[]Struct acute_ecs::systems::schedule::Builder

pub struct Builder { /* fields omitted */ }

A factory for Schedule.

Implementations

impl Builder

pub fn add_system<T>(self, system: T) -> Builder where
    T: Into<Box<dyn Schedulable + 'static>>, 

Adds a system to the schedule.

pub fn flush(self) -> Builder

Waits for executing systems to complete, and the flushes all outstanding system command buffers.

pub fn add_thread_local_fn<F>(self, f: F) -> Builder where
    F: 'static + FnMut(&mut World, &mut Resources), 

Adds a thread local function to the schedule. This function will be executed on the main thread.

pub fn add_thread_local<S>(self, system: S) -> Builder where
    S: Into<Box<dyn Runnable + 'static>>, 

Adds a thread local system to the schedule. This system will be executed on the main thread.

pub fn build(self) -> Schedule

Finalizes the builder into a Schedule.

Trait Implementations

impl Default for Builder

impl From<Builder> for Schedule

Auto Trait Implementations

impl !RefUnwindSafe for Builder

impl !Send for Builder

impl !Sync for Builder

impl Unpin for Builder

impl !UnwindSafe for Builder

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> Downcast for T where
    T: Any

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.