Struct dotrix_core::ecs::System[][src]

pub struct System { /* fields omitted */ }

Implementations

impl System[src]

pub fn from<Fun, Ctx, Srv>(func: Fun) -> Self where
    Fun: IntoSystem<Ctx, Srv> + Sync + Send,
    Ctx: Sync + Send,
    Srv: Sync + Send
[src]

pub fn with<T>(mut self: Self, option: T) -> Self where
    Self: SystemOption<T>, 
[src]

pub fn tuple(self) -> (Box<dyn Systemized>, RunLevel)[src]

Trait Implementations

impl SystemOption<RunLevel> for System[src]

Auto Trait Implementations

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> Component for T where
    T: 'static + Send + Sync
[src]

impl<T> Downcast<T> for T

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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> Upcast<T> for T