[][src]Struct abscissa_core::application::State

pub struct State<A: Application> {
    pub components: Registry<A>,
    pub paths: A::Paths,
    pub threads: Manager,
}

Framework-managed application state

Fields

components: Registry<A>

Application components.

paths: A::Paths

Application paths.

threads: Manager

Thread manager.

Trait Implementations

impl<A: Default + Application> Default for State<A> where
    A::Paths: Default
[src]

impl<A: Debug + Application> Debug for State<A> where
    A::Paths: Debug
[src]

Auto Trait Implementations

impl<A> Unpin for State<A> where
    <A as Application>::Paths: Unpin

impl<A> Sync for State<A> where
    <A as Application>::Paths: Sync

impl<A> Send for State<A> where
    <A as Application>::Paths: Send

impl<A> !RefUnwindSafe for State<A>

impl<A> !UnwindSafe for State<A>

Blanket Implementations

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.

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]