[][src]Struct yew::virtual_dom::vcomp::VChild

pub struct VChild<SELF: Component, PARENT: Component> {
    pub props: SELF::Properties,
    pub scope: ScopeHolder<PARENT>,
}

A virtual child component.

Fields

props: SELF::Properties

The component properties

scope: ScopeHolder<PARENT>

The parent component scope

Methods

impl<SELF, PARENT> VChild<SELF, PARENT> where
    SELF: Component,
    PARENT: Component
[src]

pub fn new(props: SELF::Properties, scope: ScopeHolder<PARENT>) -> Self[src]

Creates a child component that can be accessed and modified by its parent.

Trait Implementations

impl<COMP, CHILD> From<VChild<CHILD, COMP>> for VComp<COMP> where
    COMP: Component,
    CHILD: Component + Renderable<CHILD>, 
[src]

impl<COMP, CHILD> From<VChild<CHILD, COMP>> for VNode<COMP> where
    COMP: Component,
    CHILD: Component + Renderable<CHILD>, 
[src]

Auto Trait Implementations

impl<SELF, PARENT> !Send for VChild<SELF, PARENT>

impl<SELF, PARENT> !Sync for VChild<SELF, PARENT>

impl<SELF, PARENT> Unpin for VChild<SELF, PARENT> where
    <SELF as Component>::Properties: Unpin

impl<SELF, PARENT> !UnwindSafe for VChild<SELF, PARENT>

impl<SELF, PARENT> !RefUnwindSafe for VChild<SELF, PARENT>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.