[][src]Struct spair::Checklist

#[must_use]pub struct Checklist<C: Component> { /* fields omitted */ }

Implementations

impl<C: Component> Checklist<C>[src]

pub fn should_render() -> Self[src]

pub fn skip_render() -> Self[src]

pub fn set_should_render(&mut self)[src]

pub fn set_skip_render(&mut self)[src]

pub fn add_command(&mut self, cmd: Box<dyn Command<C>>)[src]

Trait Implementations

impl<C: Component> From<()> for Checklist<C>[src]

impl<C> From<Box<dyn Command<C> + 'static>> for Checklist<C> where
    C: 'static + Component
[src]

impl<C> From<Option<Box<dyn Command<C> + 'static>>> for Checklist<C> where
    C: 'static + Component
[src]

impl<C: Component> From<ShouldRender> for Checklist<C>[src]

Auto Trait Implementations

impl<C> !RefUnwindSafe for Checklist<C>

impl<C> !Send for Checklist<C>

impl<C> !Sync for Checklist<C>

impl<C> Unpin for Checklist<C>

impl<C> !UnwindSafe for Checklist<C>

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.