pub struct PathwayRow {Show 15 fields
pub id: String,
pub name: String,
pub altname: String,
pub hierarchy: String,
pub taxrange: String,
pub rea_id: String,
pub rea_ec: String,
pub key_rea: String,
pub rea_name: String,
pub rea_nr: u32,
pub ec_nr: u32,
pub superpathway: String,
pub status: String,
pub spont: String,
pub source: PwySource,
}Fields§
§id: String§name: String§altname: String§hierarchy: String§taxrange: String§rea_id: StringComma-separated reaction ids (MetaCyc RXN ids, KEGG R-numbers, or SEED rxn ids).
rea_ec: String§key_rea: StringComma-separated “key reaction” ids (presence ⇒ pathway considered present).
rea_name: String§rea_nr: u32§ec_nr: u32§superpathway: String§status: StringFree-form status string (usually TRUE / FALSE / empty).
spont: StringComma-separated ids of reactions considered spontaneous. Empty when
the source file lacks the spont column.
source: PwySourceImplementations§
Trait Implementations§
Source§impl Clone for PathwayRow
impl Clone for PathwayRow
Source§fn clone(&self) -> PathwayRow
fn clone(&self) -> PathwayRow
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 PathwayRow
impl Debug for PathwayRow
Source§impl<'de> Deserialize<'de> for PathwayRow
impl<'de> Deserialize<'de> for PathwayRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PathwayRow
impl RefUnwindSafe for PathwayRow
impl Send for PathwayRow
impl Sync for PathwayRow
impl Unpin for PathwayRow
impl UnsafeUnpin for PathwayRow
impl UnwindSafe for PathwayRow
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