pub struct ExpansionTraitTreeFlat {
pub expansion_id: i32,
pub system: String,
pub tree_id: i32,
pub all_node_ids: Vec<i32>,
pub nodes: Vec<TraitNode>,
pub edges: Vec<TraitEdge>,
pub max_points: i32,
}Expand description
Expansion-owned trait tree shared by every class and specialization. Expansion trees retain their own identity and selection encoding while reusing the DBC node vocabulary shared with class, specialization, and hero trees.
Fields§
§expansion_id: i32§system: String§tree_id: i32§all_node_ids: Vec<i32>§nodes: Vec<TraitNode>§edges: Vec<TraitEdge>§max_points: i32Trait Implementations§
Source§impl Clone for ExpansionTraitTreeFlat
impl Clone for ExpansionTraitTreeFlat
Source§fn clone(&self) -> ExpansionTraitTreeFlat
fn clone(&self) -> ExpansionTraitTreeFlat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CopyInsert for ExpansionTraitTreeFlat
impl CopyInsert for ExpansionTraitTreeFlat
Source§impl Debug for ExpansionTraitTreeFlat
impl Debug for ExpansionTraitTreeFlat
Source§impl Default for ExpansionTraitTreeFlat
impl Default for ExpansionTraitTreeFlat
Source§fn default() -> ExpansionTraitTreeFlat
fn default() -> ExpansionTraitTreeFlat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpansionTraitTreeFlat
impl<'de> Deserialize<'de> for ExpansionTraitTreeFlat
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 ExpansionTraitTreeFlat
impl JsonSchema for ExpansionTraitTreeFlat
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 ExpansionTraitTreeFlat
impl RefUnwindSafe for ExpansionTraitTreeFlat
impl Send for ExpansionTraitTreeFlat
impl Sync for ExpansionTraitTreeFlat
impl Unpin for ExpansionTraitTreeFlat
impl UnsafeUnpin for ExpansionTraitTreeFlat
impl UnwindSafe for ExpansionTraitTreeFlat
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