[][src]Struct specs_time::TimeBundle

pub struct TimeBundle<'deps, T> {
    pub deps: Vec<&'deps str>,
    // some fields omitted
}

Fields

deps: Vec<&'deps str>

Methods

impl<'deps, T> TimeBundle<'deps, T>[src]

pub fn new(deps: &[&'deps str]) -> Self[src]

Trait Implementations

impl<'deps, T> Default for TimeBundle<'deps, T>[src]

impl<'deps, 'world, 'a, 'b, T> Bundle<'world, 'a, 'b> for TimeBundle<'deps, T> where
    T: 'static + Sync + Send + Float + FromPrimitive
[src]

type Error = ()

Auto Trait Implementations

impl<'deps, T> Send for TimeBundle<'deps, T> where
    T: Send

impl<'deps, T> Unpin for TimeBundle<'deps, T> where
    T: Unpin

impl<'deps, T> Sync for TimeBundle<'deps, T> where
    T: Sync

impl<'deps, T> UnwindSafe for TimeBundle<'deps, T> where
    T: UnwindSafe

impl<'deps, T> RefUnwindSafe for TimeBundle<'deps, T> where
    T: RefUnwindSafe

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> 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<T> Resource for T where
    T: Any + Send + Sync

impl<T> TryDefault for T where
    T: Default
[src]

fn unwrap_default() -> Self[src]

Calls try_default and panics on an error case.

impl<T> Any for T where
    T: Any

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