Type Alias InstancelessDynClientInputBundle

Source
pub type InstancelessDynClientInputBundle = ClientInputBundle<Box<dyn IInput + Send + Sync + 'static>, Box<dyn IState + Send + Sync + 'static>>;

Aliased Type§

pub struct InstancelessDynClientInputBundle {
    pub(crate) inputs: Vec<ClientInput<Box<dyn IInput + Sync + Send>>>,
    pub(crate) sm_gens: Vec<ClientInputSM<Box<dyn IState + Sync + Send>>>,
}

Fields§

§inputs: Vec<ClientInput<Box<dyn IInput + Sync + Send>>>§sm_gens: Vec<ClientInputSM<Box<dyn IState + Sync + Send>>>

Trait Implementations§

Source§

impl IntoDynInstance for InstancelessDynClientInputBundle

Source§

type DynType = ClientInputBundle

The type erased version of the type implementing this trait
Source§

fn into_dyn(self, module_instance_id: ModuleInstanceId) -> ClientInputBundle

Convert self into its type-erased equivalent