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