[−][src]Struct amethyst_test::CustomDispatcherStateBuilder
Builder for the CustomDispatcherState
.
This allows you to specify which systems you want to run within the state.
Implementations
impl<'a, 'b> CustomDispatcherStateBuilder<'a, 'b>
[src]
impl<'a, 'b: 'a> CustomDispatcherStateBuilder<'a, 'b>
[src]
pub fn with_system<S>(
self,
system: S,
name: String,
dependencies: Vec<String>
) -> Self where
S: for<'c> System<'c> + 'static + Send,
[src]
self,
system: S,
name: String,
dependencies: Vec<String>
) -> Self where
S: for<'c> System<'c> + 'static + Send,
Registers a System
with the dispatcher builder.
Parameters
system
: Function to instantiate theSystem
.name
: Name to register the system with, used for dependency ordering.deps
: Names of systems that must run before this system.
pub fn with_system_desc<SD, S>(
self,
system_desc: SD,
name: String,
dependencies: Vec<String>
) -> Self where
SD: SystemDesc<'a, 'b, S> + 'a,
S: for<'c> System<'c> + 'a + Send,
[src]
self,
system_desc: SD,
name: String,
dependencies: Vec<String>
) -> Self where
SD: SystemDesc<'a, 'b, S> + 'a,
S: for<'c> System<'c> + 'a + Send,
Registers a System
with the dispatcher builder.
Parameters
system_desc
: Descriptor to instantiate theSystem
.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> !RefUnwindSafe for CustomDispatcherStateBuilder<'a, 'b>
impl<'a, 'b> !Send for CustomDispatcherStateBuilder<'a, 'b>
impl<'a, 'b> !Sync for CustomDispatcherStateBuilder<'a, 'b>
impl<'a, 'b> Unpin for CustomDispatcherStateBuilder<'a, 'b>
impl<'a, 'b> !UnwindSafe for CustomDispatcherStateBuilder<'a, 'b>
Blanket Implementations
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Any for T where
T: Any,
T: Any,
fn get_type_id(&self) -> TypeId
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
fn is_in_subset(&self) -> bool
unsafe fn to_subset_unchecked(&self) -> SS
fn from_subset(element: &SS) -> SP
impl<T> Supports<T> for T
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,