fedimint_core::core

Trait IOutput

Source
pub trait IOutput:
    Debug
    + Display
    + DynEncodable {
    // Required methods
    fn as_any(&self) -> &(dyn Any + Send + Sync);
    fn module_kind(&self) -> Option<ModuleKind>;
    fn clone(&self, instance_id: ModuleInstanceId) -> DynOutput;
    fn dyn_hash(&self) -> u64;
    fn erased_eq_no_instance_id(&self, other: &DynOutput) -> bool;
}
Expand description

Something that can be an DynOutput in a Transaction

General purpose code should use DynOutput instead

Required Methods§

Source

fn as_any(&self) -> &(dyn Any + Send + Sync)

Source

fn module_kind(&self) -> Option<ModuleKind>

Source

fn clone(&self, instance_id: ModuleInstanceId) -> DynOutput

Source

fn dyn_hash(&self) -> u64

Source

fn erased_eq_no_instance_id(&self, other: &DynOutput) -> bool

Implementors§

Source§

impl IOutput for DynUnknown

Source§

impl<T> IOutput for T
where T: Output + DynEncodable + 'static + Send + Sync,