pub struct DBRefRecord {Show 13 fields
pub id_code: String,
pub chain_id: char,
pub seq_begin: u32,
pub insert_begin: Option<char>,
pub seq_end: u32,
pub insert_end: Option<char>,
pub database: DBType,
pub db_accession: String,
pub db_id_code: String,
pub db_seq_begin: u32,
pub i_dbns_beg: Option<char>,
pub db_seq_end: u32,
pub db_ins_end: Option<char>,
}
Fields§
§id_code: String
§chain_id: char
§seq_begin: u32
§insert_begin: Option<char>
§seq_end: u32
§insert_end: Option<char>
§database: DBType
§db_accession: String
§db_id_code: String
§db_seq_begin: u32
§i_dbns_beg: Option<char>
§db_seq_end: u32
§db_ins_end: Option<char>
Implementations§
Trait Implementations§
Source§impl Clone for DBRefRecord
impl Clone for DBRefRecord
Source§fn clone(&self) -> DBRefRecord
fn clone(&self) -> DBRefRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DBRefRecord
impl Debug for DBRefRecord
Auto Trait Implementations§
impl Freeze for DBRefRecord
impl RefUnwindSafe for DBRefRecord
impl Send for DBRefRecord
impl Sync for DBRefRecord
impl Unpin for DBRefRecord
impl UnwindSafe for DBRefRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more