pub trait UpdateReactions<Ri> {
// Required methods
fn set_conc(&mut self, conc: Ri);
fn get_conc(&self) -> Ri;
fn incr_conc(&mut self, incr: Ri);
}
Expand description
Interface to store intermediate information about cellular reactions.