[][src]Struct amethyst_core::deferred_dispatcher_operation::AddSystem

pub struct AddSystem<S> {
    pub system: S,
    pub name: String,
    pub dependencies: Vec<String>,
}

Deferred operation Add System

Fields

system: S

System object

name: String

System name

dependencies: Vec<String>

System dependencies list

Trait Implementations

impl<'a, 'b, S> DispatcherOperation<'a, 'b> for AddSystem<S> where
    S: for<'s> System<'s> + Send + 'a, 
[src]

impl<S> Debug for AddSystem<S>[src]

Auto Trait Implementations

impl<S> Send for AddSystem<S> where
    S: Send

impl<S> Unpin for AddSystem<S> where
    S: Unpin

impl<S> Sync for AddSystem<S> where
    S: Sync

impl<S> UnwindSafe for AddSystem<S> where
    S: UnwindSafe

impl<S> RefUnwindSafe for AddSystem<S> where
    S: RefUnwindSafe

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<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Resource for T where
    T: Any + Send + Sync

impl<T> Event for T where
    T: Send + Sync + 'static, 

impl<T> Any for T where
    T: Any