[][src]Struct kagura::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>[src]

pub fn new(
    state: State,
    update: fn(_: &mut State, _: &Msg) -> Option<Sub>,
    render: fn(_: &State) -> Html<Msg>
) -> Component<Msg, State, Sub>
[src]

Creates new component ftom initial state, update, render

Example

fn hello_world_component() -> Component<Msg, State, Sub> {
    Component::new(initial_state, update, render)
}

struct Msg;
struct State;
struct Sub;

fn update(_: &mut State, _: &Msg) -> Option<Sub> { None }

fn render(_: &State) -> Html<Msg> {
    Html::h1(
    Attributes::new(),
    Events::new(),
    vec![
        Html::unsafe_text("hello kagura"),
    ],
)
}

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

Regists binder from child Sub to parent Msg

#Example

create_a_child_component(props).subscribe(|sub| {
    match sub {
        ChildComponent::Sub::Input(value) => Box::new(Msg::Send(value))
    }
})

Auto Trait Implementations

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

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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>,