pub trait GetReceiver<A: Architecture> {
// Required method
fn receiver(&self) -> Option<A::Address>;
}Expand description
Trait for getting the the receiver of a transaction.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".