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 amount: Amount,
pub state_machines: Arc<dyn Fn(TransactionId, u64) -> Vec<Box<dyn IState + Sync + Send>> + Sync + Send>,
}
Fields§
§output: Box<dyn IOutput + Sync + Send>
§amount: Amount
§state_machines: Arc<dyn Fn(TransactionId, u64) -> Vec<Box<dyn IState + Sync + Send>> + Sync + Send>