pub struct Compartment {
pub units: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub sbo_term: Option<String>,
pub spatial_dimensions: Option<f64>,
pub size: Option<f64>,
pub constant: Option<bool>,
pub parent: Option<TagIndex>,
}
Fields§
§units: Option<String>
§id: Option<String>
§name: Option<String>
§sbo_term: Option<String>
§spatial_dimensions: Option<f64>
§size: Option<f64>
§constant: Option<bool>
§parent: Option<TagIndex>
Trait Implementations§
Source§impl Clone for Compartment
impl Clone for Compartment
Source§fn clone(&self) -> Compartment
fn clone(&self) -> Compartment
Returns a duplicate of the value. Read more
1.0.0 · 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 Compartment
impl Debug for Compartment
Source§impl Default for Compartment
impl Default for Compartment
Source§fn default() -> Compartment
fn default() -> Compartment
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Compartment
impl RefUnwindSafe for Compartment
impl Send for Compartment
impl Sync for Compartment
impl Unpin for Compartment
impl UnwindSafe for Compartment
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