Trait Intracellular

pub trait Intracellular<Ri> {
    // Required methods
    fn set_intracellular(&mut self, intracellular: Ri);
    fn get_intracellular(&self) -> Ri;
}
Expand description

Setter and Getter for intracellular values of a cellagent.

Required Methods§

fn set_intracellular(&mut self, intracellular: Ri)

Sets the current intracellular values.

fn get_intracellular(&self) -> Ri

Obtains the current intracellular values.

Implementors§

§

impl<__cr_private_Ri> Intracellular<__cr_private_Ri> for Bacteria
where BacteriaReactions: Intracellular<__cr_private_Ri>,