#[repr(C)]
pub struct ItemVisitorVTable { pub visit_item: unsafe extern "C" fn(_: VRefMut<'_, ItemVisitorVTable>, component: &VRc<ComponentVTable, Dyn>, index: usize, item: Pin<VRef<'_, ItemVTable>>) -> VisitChildrenResult, pub drop: unsafe extern "C" fn(_: VRefMut<'_, ItemVisitorVTable>), }
Expand description

Object to be passed in visit_item_children method of the Component.

Fields§

§visit_item: unsafe extern "C" fn(_: VRefMut<'_, ItemVisitorVTable>, component: &VRc<ComponentVTable, Dyn>, index: usize, item: Pin<VRef<'_, ItemVTable>>) -> VisitChildrenResult

Called for each child of the visited item

The component parameter is the component in which the item live which might not be the same as the parent’s component. index is to be used again in the visit_item_children function of the Component (the one passed as parameter) and item is a reference to the item itself

§drop: unsafe extern "C" fn(_: VRefMut<'_, ItemVisitorVTable>)

Destructor

Implementations§

Create a vtable suitable for a given type implementing the trait.

Trait Implementations§

That’s the VTable itself (so most likely Self)
That’s the trait object that implements the functions Read more
Safety Read more
allocate a new VBox

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.