[][src]Struct amethyst_test::CustomDispatcherStateBuilder

pub struct CustomDispatcherStateBuilder<'a, 'b> { /* fields omitted */ }

Builder for the CustomDispatcherState.

This allows you to specify which systems you want to run within the state.

Methods

impl<'a, 'b> CustomDispatcherStateBuilder<'a, 'b>[src]

pub fn new() -> Self[src]

Constructs a new CustomDispatcherStateBuilder.

impl<'a, 'b> CustomDispatcherStateBuilder<'a, 'b>[src]

pub fn with<Sys>(self, system: Sys, name: &str, deps: &[&str]) -> Self where
    Sys: for<'c> System<'c> + Send + 'a, 
[src]

Registers a System with the dispatcher builder.

Parameters

  • system: System to register.
  • name: Name to register the system with, used for dependency ordering.
  • deps: Names of systems that must run before this system.

pub fn build(self) -> CustomDispatcherState<'a, 'b>[src]

Builds and returns the CustomDispatcherState.

Trait Implementations

impl<'a, 'b> Debug for CustomDispatcherStateBuilder<'a, 'b>[src]

Auto Trait Implementations

impl<'a, 'b> !Send for CustomDispatcherStateBuilder<'a, 'b>

impl<'a, 'b> !Sync for CustomDispatcherStateBuilder<'a, 'b>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> Erased for T

impl<T> Any for T where
    T: Any

impl<T> Erased for T

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.