pub trait Digest<ID>where
ID: OperationId,{
// Required method
fn hash(&self) -> ID;
}Expand description
Returns (unique) hash digest, which can be used as identifier of this published data type.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".