pub struct MediumRule {
pub nutrient: String,
pub cpd_id: String,
pub rule: String,
pub max_flux: Option<f64>,
pub proton_balance: String,
pub comment: String,
pub category: String,
}Fields§
§nutrient: String§cpd_id: String§rule: String§max_flux: Option<f64>None for rows that ship NA (e.g. “do not supply O2 under anaerobic”).
proton_balance: String§comment: String§category: StringTrait Implementations§
Source§impl Clone for MediumRule
impl Clone for MediumRule
Source§fn clone(&self) -> MediumRule
fn clone(&self) -> MediumRule
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 MediumRule
impl Debug for MediumRule
Source§impl<'de> Deserialize<'de> for MediumRule
impl<'de> Deserialize<'de> for MediumRule
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 MediumRule
impl RefUnwindSafe for MediumRule
impl Send for MediumRule
impl Sync for MediumRule
impl Unpin for MediumRule
impl UnsafeUnpin for MediumRule
impl UnwindSafe for MediumRule
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