pub enum VNode<Model: Component> {
Object(VObject<Model>),
Component(VComponent<Model>),
}
Expand description
Variants§
Implementations§
Trait Implementations§
Source§impl<Model: Component> IntoIterator for VNode<Model>
impl<Model: Component> IntoIterator for VNode<Model>
Auto Trait Implementations§
impl<Model> !Freeze for VNode<Model>
impl<Model> !RefUnwindSafe for VNode<Model>
impl<Model> !Send for VNode<Model>
impl<Model> !Sync for VNode<Model>
impl<Model> Unpin for VNode<Model>
impl<Model> !UnwindSafe for VNode<Model>
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