Struct rosalind::cons::Profile [] [src]

pub struct Profile {
    pub A: Vec<u32>,
    pub C: Vec<u32>,
    pub G: Vec<u32>,
    pub T: Vec<u32>,
}

This structure contains profile of DNA strings

Fields

A: Vec<u32> C: Vec<u32> G: Vec<u32> T: Vec<u32>

Trait Implementations

impl Debug for Profile
[src]

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

Formats the value using the given formatter.

impl PartialEq for Profile
[src]

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

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

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

This method tests for !=.

impl Display for Profile
[src]

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

Formats the value using the given formatter.