pub struct AuxStorageReactions<Ri> { /* private fields */ }
Available on crate feature
chili
only.Expand description
Helper storage for values regarding intracellular concentrations for the Reactions trait.
Trait Implementations§
Source§impl<Ri: Clone> Clone for AuxStorageReactions<Ri>
impl<Ri: Clone> Clone for AuxStorageReactions<Ri>
Source§fn clone(&self) -> AuxStorageReactions<Ri>
fn clone(&self) -> AuxStorageReactions<Ri>
Returns a copy 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<Ri: Default> Default for AuxStorageReactions<Ri>
impl<Ri: Default> Default for AuxStorageReactions<Ri>
Source§fn default() -> AuxStorageReactions<Ri>
fn default() -> AuxStorageReactions<Ri>
Returns the “default value” for a type. Read more
Source§impl<Ri> DefaultFrom<Ri> for AuxStorageReactions<Ri>where
Ri: Clone,
impl<Ri> DefaultFrom<Ri> for AuxStorageReactions<Ri>where
Ri: Clone,
Source§fn default_from(value: &Ri) -> Self
fn default_from(value: &Ri) -> Self
Constructs the Type in question from a given value. This is typically a zero value.
If it can be constructed from the num::Zero trait, this method is not required and
cellular_raza
will determine the initial zero-value correctly.
For other types (ie. dynamically-sized ones) additional entries may be necessary.Source§impl<'de, Ri> Deserialize<'de> for AuxStorageReactions<Ri>where
Ri: Deserialize<'de>,
impl<'de, Ri> Deserialize<'de> for AuxStorageReactions<Ri>where
Ri: Deserialize<'de>,
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
Source§impl<Ri> Serialize for AuxStorageReactions<Ri>where
Ri: Serialize,
impl<Ri> Serialize for AuxStorageReactions<Ri>where
Ri: Serialize,
Source§impl<R> UpdateReactions<R> for AuxStorageReactions<R>
impl<R> UpdateReactions<R> for AuxStorageReactions<R>
Auto Trait Implementations§
impl<Ri> Freeze for AuxStorageReactions<Ri>where
Ri: Freeze,
impl<Ri> RefUnwindSafe for AuxStorageReactions<Ri>where
Ri: RefUnwindSafe,
impl<Ri> Send for AuxStorageReactions<Ri>where
Ri: Send,
impl<Ri> Sync for AuxStorageReactions<Ri>where
Ri: Sync,
impl<Ri> Unpin for AuxStorageReactions<Ri>where
Ri: Unpin,
impl<Ri> UnwindSafe for AuxStorageReactions<Ri>where
Ri: UnwindSafe,
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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