[][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) -> Cmd<Msg, Sub>,
    render: fn(_: &State) -> Html<Msg>
) -> Component<Msg, State, Sub>
[src]

Creates new component ftom initial state, update, render

Example

use kagura::Attributes;
use kagura::Events;
use kagura::Html;
use kagura::Cmd;
use kagura::Component;

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

struct Msg();
struct State();
struct Sub();

fn init() -> State {
    State()
}

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

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

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

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>,