Type Alias fedimint_client::InstancelessDynClientInput
source · pub type InstancelessDynClientInput = ClientInput<Box<dyn IInput + Send + Sync + 'static>, Box<dyn IState + Send + Sync + 'static>>;Aliased Type§
struct InstancelessDynClientInput {
pub input: Box<dyn IInput + Send + Sync>,
pub keys: Vec<KeyPair>,
pub state_machines: Arc<dyn Fn(TransactionId, u64) -> Vec<Box<dyn IState + Send + Sync>> + Send + Sync>,
}Fields§
§input: Box<dyn IInput + Send + Sync>§keys: Vec<KeyPair>§state_machines: Arc<dyn Fn(TransactionId, u64) -> Vec<Box<dyn IState + Send + Sync>> + Send + Sync>