[][src]Struct tecs::System

pub struct System<'a, Q: Queryable<'a>> { /* fields omitted */ }

A System for a specific query

Implementations

impl<'a, Q: Queryable<'a>> System<'a, Q>[src]

pub fn new(
    f: impl Fn(<<Q as Queryable<'a>>::Iter as Iterator>::Item) + 'static
) -> System<'a, Q>
[src]

Trait Implementations

impl<'a, Q: Queryable<'a>> Runnable for System<'a, Q>[src]

Auto Trait Implementations

impl<'a, Q> !RefUnwindSafe for System<'a, Q>

impl<'a, Q> !Send for System<'a, Q>

impl<'a, Q> !Sync for System<'a, Q>

impl<'a, Q> Unpin for System<'a, Q> where
    Q: Unpin,
    <Q as Queryable<'a>>::Iter: Iterator

impl<'a, Q> !UnwindSafe for System<'a, Q>

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.