[][src]Struct sbml::Model

pub struct Model {
    pub model_units: ModelUnits,
    pub initial_assignments: HashMap<String, InitialAssignment>,
    pub parameters: HashMap<String, Parameter>,
    pub species: HashMap<String, Specie>,
    pub compartments: HashMap<String, Compartment>,
    pub unit_definitions: HashMap<String, HashMap<UnitSId, Unit>>,
    pub constraints: Vec<Constraint>,
}

Fields

model_units: ModelUnitsinitial_assignments: HashMap<String, InitialAssignment>parameters: HashMap<String, Parameter>species: HashMap<String, Specie>compartments: HashMap<String, Compartment>unit_definitions: HashMap<String, HashMap<UnitSId, Unit>>constraints: Vec<Constraint>

Trait Implementations

impl Debug for Model[src]

impl Default for Model[src]

impl PartialEq<Model> for Model[src]

impl StructuralPartialEq for Model[src]

Auto Trait Implementations

impl RefUnwindSafe for Model

impl Send for Model

impl Sync for Model

impl Unpin for Model

impl UnwindSafe for Model

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.