[][src]Struct kagura::prelude::Component

pub struct Component<Msg, State, Sub> where
    Msg: 'static,
    State: 'static,
    Sub: 'static, 
{ /* fields omitted */ }

Component constructed by State-update-render

Methods

impl<Msg, State, Sub> Component<Msg, State, Sub> where
    Msg: 'static,
    State: 'static,
    Sub: 'static, 
[src]

pub fn new(
    init: impl FnOnce() -> State,
    update: impl Fn(&mut State, Msg) -> Cmd<Msg, Sub> + 'static,
    render: impl Fn(&State) -> Html<Msg> + 'static
) -> Self
[src]

pub fn subscribe<Msg_>(self, sub: impl FnMut(Sub) -> Msg_ + 'static) -> Self where
    Msg_: 'static, 
[src]

set subscription witch bind from child sub to parent msg

Trait Implementations

impl<Msg, State, Sub> Into<Rc<RefCell<Box<dyn DomComponent + 'static>>>> for Component<Msg, State, Sub>[src]

Auto Trait Implementations

impl<Msg, State, Sub> !Send for Component<Msg, State, Sub>

impl<Msg, State, Sub> !Sync for Component<Msg, State, Sub>

impl<Msg, State, Sub> Unpin for Component<Msg, State, Sub> where
    State: Unpin

impl<Msg, State, Sub> !UnwindSafe for Component<Msg, State, Sub>

impl<Msg, State, Sub> !RefUnwindSafe for Component<Msg, State, Sub>

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<V, T> VZip<V> for T where
    V: MultiLane<T>,