pub struct StaticSystemInput<'a, I: SystemInput>(pub I::Inner<'a>);Expand description
A helper for using SystemInputs in generic contexts.
This type is a SystemInput adapter which always has
Self::Param == Self (ignoring lifetimes for brevity),
no matter the argument SystemInput (I).
This makes it useful for having arbitrary SystemInputs in
function systems.
See SystemInput to learn more about system inputs in general.
Tuple Fields§
§0: I::Inner<'a>Trait Implementations§
Source§impl<'a, I: SystemInput> SystemInput for StaticSystemInput<'a, I>
impl<'a, I: SystemInput> SystemInput for StaticSystemInput<'a, I>
Source§type Param<'i> = StaticSystemInput<'i, I>
type Param<'i> = StaticSystemInput<'i, I>
The wrapper input type that is defined as the first argument to
FunctionSystems.Source§type Inner<'i> = <I as SystemInput>::Inner<'i>
type Inner<'i> = <I as SystemInput>::Inner<'i>
The inner input type that is passed to functions that run systems,
such as
System::run.Source§fn wrap(this: Self::Inner<'_>) -> Self::Param<'_>
fn wrap(this: Self::Inner<'_>) -> Self::Param<'_>
Converts a
SystemInput::Inner into a SystemInput::Param.Auto Trait Implementations§
impl<'a, I> Freeze for StaticSystemInput<'a, I>
impl<'a, I> RefUnwindSafe for StaticSystemInput<'a, I>
impl<'a, I> Send for StaticSystemInput<'a, I>
impl<'a, I> Sync for StaticSystemInput<'a, I>
impl<'a, I> Unpin for StaticSystemInput<'a, I>
impl<'a, I> UnwindSafe for StaticSystemInput<'a, I>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.