[][src]Struct seed::app::cfg::AppCfg

pub struct AppCfg<Ms, Mdl, ElC, GMs> where
    Ms: 'static,
    Mdl: 'static,
    ElC: View<Ms>, 
{ pub document: Document, pub mount_point: Element, pub update: UpdateFn<Ms, Mdl, ElC, GMs>, pub sink: Option<SinkFn<Ms, Mdl, ElC, GMs>>, pub view: ViewFn<Mdl, ElC>, pub window_events: Option<WindowEventsFn<Ms, Mdl>>, }

Fields

document: Documentmount_point: Elementupdate: UpdateFn<Ms, Mdl, ElC, GMs>sink: Option<SinkFn<Ms, Mdl, ElC, GMs>>view: ViewFn<Mdl, ElC>window_events: Option<WindowEventsFn<Ms, Mdl>>

Auto Trait Implementations

impl<Ms, Mdl, ElC, GMs> RefUnwindSafe for AppCfg<Ms, Mdl, ElC, GMs>

impl<Ms, Mdl, ElC, GMs> !Send for AppCfg<Ms, Mdl, ElC, GMs>

impl<Ms, Mdl, ElC, GMs> !Sync for AppCfg<Ms, Mdl, ElC, GMs>

impl<Ms, Mdl, ElC, GMs> Unpin for AppCfg<Ms, Mdl, ElC, GMs>

impl<Ms, Mdl, ElC, GMs> UnwindSafe for AppCfg<Ms, Mdl, ElC, GMs>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.