pub trait GcContent: NucleotidesReadable + Sealed {
// Provided method
fn gc_content(&self) -> usize { ... }
}Expand description
Provides method for obtaining the GC content
Provided Methods§
Sourcefn gc_content(&self) -> usize
fn gc_content(&self) -> usize
Provides the count of G and C bases.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".