pub trait WrapperU64 {
// Required methods
fn new(value: u64) -> Self;
fn as_u64(&self) -> u64;
}Expand description
New and as_u64 for creating and switching to u64 when needing to use base or quote
Required Methods§
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.