Struct wasm_react::VNode
source · [−]pub struct VNode(_);
Expand description
Represents a node in the virtual DOM of React.
Implementations
Trait Implementations
sourceimpl Extend<VNode> for VNodeList
impl Extend<VNode> for VNodeList
sourcefn extend<T: IntoIterator<Item = VNode>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = VNode>>(&mut self, iter: T)
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬 This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬 This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl FromIterator<VNode> for VNodeList
impl FromIterator<VNode> for VNodeList
sourcefn from_iter<T: IntoIterator<Item = VNode>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = VNode>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations
impl RefUnwindSafe for VNode
impl !Send for VNode
impl !Sync for VNode
impl Unpin for VNode
impl UnwindSafe for VNode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more