[][src]Struct nom_pdb::common::parser::Dbref

pub struct Dbref {
    pub idcode: String,
    pub chain_id: char,
    pub seq_begin: u32,
    pub initial_sequence: Option<char>,
    pub seq_end: u32,
    pub ending_sequence: Option<char>,
    pub database: String,
    pub db_accession: String,
    pub db_idcode: String,
    pub db_seq_begin: u32,
    pub idbns_begin: Option<char>,
    pub db_seq_end: u32,
    pub dbins_end: Option<char>,
}

cross references to other sequence databases

Fields

idcode: Stringchain_id: charseq_begin: u32initial_sequence: Option<char>seq_end: u32ending_sequence: Option<char>database: Stringdb_accession: Stringdb_idcode: Stringdb_seq_begin: u32idbns_begin: Option<char>db_seq_end: u32dbins_end: Option<char>

Trait Implementations

impl Clone for Dbref[src]

impl Debug for Dbref[src]

impl Default for Dbref[src]

Auto Trait Implementations

impl RefUnwindSafe for Dbref

impl Send for Dbref

impl Sync for Dbref

impl Unpin for Dbref

impl UnwindSafe for Dbref

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.