pub struct TraitNode {
pub id: i32,
pub pos_x: i32,
pub pos_y: i32,
pub max_ranks: i32,
pub granted_ranks: i32,
pub node_type: i32,
pub tree_index: i32,
pub order_index: i32,
pub sub_tree_id: i32,
pub entries: Vec<TraitNodeEntry>,
}Fields§
§id: i32§pos_x: i32§pos_y: i32§max_ranks: i32§granted_ranks: i32§node_type: i32§tree_index: i32§order_index: i32§sub_tree_id: i32§entries: Vec<TraitNodeEntry>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TraitNode
impl<'de> Deserialize<'de> for TraitNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for TraitNode
impl JsonSchema for TraitNode
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for TraitNode
impl RefUnwindSafe for TraitNode
impl Send for TraitNode
impl Sync for TraitNode
impl Unpin for TraitNode
impl UnsafeUnpin for TraitNode
impl UnwindSafe for TraitNode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more