Type Alias InstancelessDynClientOutput

Source
pub type InstancelessDynClientOutput = ClientOutput<Box<dyn IOutput + Sync + Send>>;
Expand description

Re-exporting of everything from fedimint_client_module

This should be removed when the splitting of fedimint_client_module is complete.

Aliased Type§

struct InstancelessDynClientOutput {
    pub output: Box<dyn IOutput + Sync + Send>,
    pub amount: Amount,
}

Fields§

§output: Box<dyn IOutput + Sync + Send>§amount: Amount

Trait Implementations

Source§

impl<O> Clone for ClientOutput<O>
where O: Clone,

Source§

fn clone(&self) -> ClientOutput<O>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<O> Debug for ClientOutput<O>
where O: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<I> IntoDynInstance for ClientOutput<I>
where I: IntoDynInstance<DynType = DynOutput> + 'static,

Source§

type DynType = ClientOutput

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

fn into_dyn(self, module_instance_id: u16) -> ClientOutput

Convert self into its type-erased equivalent