[][src]Struct codenano::Nucleotide

pub struct Nucleotide {
    pub id: usize,
    pub helix_num: usize,
    pub pos_on_helix: isize,
    pub anti_sens: bool,
    pub strand: usize,
    pub pos_on_strand: usize,
    pub on_jump: bool,
    pub base: char,
}

Fields

id: usizehelix_num: usizepos_on_helix: isizeanti_sens: boolstrand: usizepos_on_strand: usizeon_jump: boolbase: char

Trait Implementations

impl Serialize for Nucleotide[src]

impl<'de> Deserialize<'de> for Nucleotide[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]