pub struct ModelSummary {
pub id: u64,
pub name: String,
pub physics: String,
pub formulation: String,
pub params: Vec<String>,
}Expand description
Parsed summary form of a FemmModel.
The record a model’s Lisp or JSON summary string decodes into, and the source the encoders read from.
Fields§
§id: u64Model id.
name: StringModel name.
physics: StringPhysics kind name.
formulation: StringFormulation name.
params: Vec<String>Input parameter names.
Trait Implementations§
Source§impl Clone for ModelSummary
impl Clone for ModelSummary
Source§fn clone(&self) -> ModelSummary
fn clone(&self) -> ModelSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ModelSummary
impl Debug for ModelSummary
impl Eq for ModelSummary
Source§impl PartialEq for ModelSummary
impl PartialEq for ModelSummary
Source§fn eq(&self, other: &ModelSummary) -> bool
fn eq(&self, other: &ModelSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModelSummary
Auto Trait Implementations§
impl Freeze for ModelSummary
impl RefUnwindSafe for ModelSummary
impl Send for ModelSummary
impl Sync for ModelSummary
impl Unpin for ModelSummary
impl UnsafeUnpin for ModelSummary
impl UnwindSafe for ModelSummary
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