pub type InstancelessDynClientOutput = ClientOutput<Box<dyn IOutput + Send + Sync + 'static>, Box<dyn IState + Send + Sync + 'static>>;

Aliased Type§

struct InstancelessDynClientOutput {
    pub output: Box<dyn IOutput + Sync + Send>,
    pub state_machines: Arc<dyn Fn(TransactionId, u64) -> Vec<Box<dyn IState + Sync + Send>> + Sync + Send>,
}

Fields§

§output: Box<dyn IOutput + Sync + Send>§state_machines: Arc<dyn Fn(TransactionId, u64) -> Vec<Box<dyn IState + Sync + Send>> + Sync + Send>