Trait iota_types::message_envelope::Message
source · pub trait Message {
type DigestType: Clone + Debug;
const SCOPE: IntentScope;
// Required method
fn digest(&self) -> Self::DigestType;
// Provided method
fn scope(&self) -> IntentScope { ... }
}
Required Associated Types§
type DigestType: Clone + Debug
Required Associated Constants§
const SCOPE: IntentScope
Required Methods§
fn digest(&self) -> Self::DigestType
Provided Methods§
fn scope(&self) -> IntentScope
Object Safety§
This trait is not object safe.