pub struct Exchange {
pub secretion: Vec<f64>,
pub uptake: Vec<f64>,
}Expand description
Secretion and uptake for one cell type, in the order of Fields::species.
Fields§
§secretion: Vec<f64>Amount added to each site the cell owns, per step.
uptake: Vec<f64>Fraction removed from each site the cell owns, per step.
Trait Implementations§
impl StructuralPartialEq for Exchange
Auto Trait Implementations§
impl Freeze for Exchange
impl RefUnwindSafe for Exchange
impl Send for Exchange
impl Sync for Exchange
impl Unpin for Exchange
impl UnsafeUnpin for Exchange
impl UnwindSafe for Exchange
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