Trait InteractionInformation

Source
pub trait InteractionInformation<Inf> {
    // Required method
    fn get_interaction_information(&self) -> Inf;
}
Expand description

Exposes information which is used to calculate interactions between cells and the domain.

Required Methods§

Source

fn get_interaction_information(&self) -> Inf

Get additional information of cellular properties (ie. for cell-specific interactions).

Implementors§

Source§

impl<Inf, A> InteractionInformation<Inf> for CellBox<A>
where A: InteractionInformation<Inf>,