pub enum MixModel {
Cstr,
TwoCompartment,
Fifo,
Lifo,
}Expand description
Tank mixing model (§2.4.4).
Variants§
Cstr
Completely mixed (single compartment).
TwoCompartment
Two-compartment mixing.
Fifo
First-in first-out plug flow.
Lifo
Last-in first-out.
Trait Implementations§
impl Copy for MixModel
impl Eq for MixModel
impl StructuralPartialEq for MixModel
Auto Trait Implementations§
impl Freeze for MixModel
impl RefUnwindSafe for MixModel
impl Send for MixModel
impl Sync for MixModel
impl Unpin for MixModel
impl UnsafeUnpin for MixModel
impl UnwindSafe for MixModel
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