pub struct ComponentContainerElement {
pub component_container_item_tree_index: u32,
pub component_container_items_index: ItemInstanceIdx,
pub component_placeholder_item_tree_index: u32,
}
Fields§
§component_container_item_tree_index: u32
The index of the ComponentContainer
in the enclosing components item_tree
array
component_container_items_index: ItemInstanceIdx
The index of the ComponentContainer
item in the enclosing components items
array
component_placeholder_item_tree_index: u32
The index to a dynamic tree node where the component is supposed to be embedded at
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ComponentContainerElement
impl RefUnwindSafe for ComponentContainerElement
impl Send for ComponentContainerElement
impl Sync for ComponentContainerElement
impl Unpin for ComponentContainerElement
impl UnwindSafe for ComponentContainerElement
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more