pub struct StoichTerm {
pub coef: f64,
pub cpd: CpdId,
pub compartment: u8,
pub reserved: u8,
pub name: String,
}Fields§
§coef: f64§cpd: CpdId§compartment: u8§reserved: u8Reserved field seen as 0 in every real row. Preserved for fidelity.
name: StringHuman-readable metabolite name as given in the stoichiometry field. May be empty if absent from the source.
Trait Implementations§
Source§impl Clone for StoichTerm
impl Clone for StoichTerm
Source§fn clone(&self) -> StoichTerm
fn clone(&self) -> StoichTerm
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 StoichTerm
impl Debug for StoichTerm
Source§impl PartialEq for StoichTerm
impl PartialEq for StoichTerm
impl StructuralPartialEq for StoichTerm
Auto Trait Implementations§
impl Freeze for StoichTerm
impl RefUnwindSafe for StoichTerm
impl Send for StoichTerm
impl Sync for StoichTerm
impl Unpin for StoichTerm
impl UnsafeUnpin for StoichTerm
impl UnwindSafe for StoichTerm
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