pub struct Fields {
pub species: Vec<Species>,
pub values: Vec<Vec<f64>>,
pub substeps: Vec<usize>,
/* private fields */
}Expand description
Every species, and the concentrations on the lattice.
Fields§
§species: Vec<Species>The species, in the order a description lists them.
values: Vec<Vec<f64>>One concentration grid per species, indexed as the lattice is.
substeps: Vec<usize>Diffusion sub-steps per Monte Carlo step, one per species.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fields
impl RefUnwindSafe for Fields
impl Send for Fields
impl Sync for Fields
impl Unpin for Fields
impl UnsafeUnpin for Fields
impl UnwindSafe for Fields
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