pub trait BaseType {
// Provided method
fn fingerprint() -> u64 { ... }
}
Provided Methods§
Sourcefn fingerprint() -> u64
fn fingerprint() -> u64
The fingerprint of this type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.