Struct rosalind::dna::DNANucleotides [] [src]

pub struct DNANucleotides {
    pub A: u32,
    pub C: u32,
    pub G: u32,
    pub T: u32,
}

This structure contains amount of each nucleotide in DNA

Fields

A: u32 C: u32 G: u32 T: u32

Trait Implementations

impl Debug for DNANucleotides
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for DNANucleotides
[src]

fn eq(&self, __arg_0: &DNANucleotides) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &DNANucleotides) -> bool

This method tests for !=.

impl Display for DNANucleotides
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.