pub trait HasIntegrity {
// Required method
fn hash(&self) -> Result<Integrity>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait HasIntegrity {
// Required method
fn hash(&self) -> Result<Integrity>;
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".