Type Alias InstancelessDynClientOutput

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

Aliased Type§

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

Fields§

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

Trait Implementations

Source§

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

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> Debug for ClientOutput<O>

Source§

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

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: ModuleInstanceId) -> ClientOutput

Convert self into its type-erased equivalent