Skip to main content

GcContent

Trait GcContent 

Source
pub trait GcContent: NucleotidesReadable + Sealed {
    // Provided method
    fn gc_content(&self) -> usize { ... }
}
Expand description

Provides method for obtaining the GC content

Provided Methods§

Source

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".

Implementors§

Source§

impl<T: NucleotidesReadable + Sealed> GcContent for T