logo
pub struct TreeNode {
    pub sub_component_path: Vec<usize>,
    pub item_index: usize,
    pub repeated: bool,
    pub children: Vec<TreeNode>,
}

Fields

sub_component_path: Vec<usize>item_index: usize

Either an index in the items or repeater, depending on repeated

repeated: boolchildren: Vec<TreeNode>

Implementations

Visit this, and the children. passes children_offset must be set to 1 for the root

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.