pub trait KmerSize:
Ord
+ Hash
+ Copy
+ Debug {
// Required method
fn K() -> usize;
}Expand description
Helper trait for declaring the K value of a Kmer. Will be removed when const generics are available
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.