Trait Volume

Source
pub trait Volume<F = f64> {
    // Required method
    fn get_volume(&self) -> F;
}
Expand description

Obtain the current volume of the cell

This trait is used when updating extracellular reactions and processes. For more details see domain.

Required Methods§

Source

fn get_volume(&self) -> F

Obtain the cells current volume.

Implementors§