Trait double_dot_state::IntoSystem
pub trait IntoSystem<In, Out, Marker>: Sized {
type System: System<In = In, Out = Out>;
// Required method
fn into_system(this: Self) -> Self::System;
}Expand description
Required Associated Types§
Required Methods§
fn into_system(this: Self) -> Self::System
fn into_system(this: Self) -> Self::System
Turns this value into its corresponding System.
Object Safety§
This trait is not object safe.