pub struct VariableYaml {
pub symbol: String,
pub description: String,
pub units: String,
pub type: String,
}Expand description
Variable definition.
Fields§
§symbol: String§description: String§units: String§type: StringTrait Implementations§
Source§impl Clone for VariableYaml
impl Clone for VariableYaml
Source§fn clone(&self) -> VariableYaml
fn clone(&self) -> VariableYaml
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 VariableYaml
impl Debug for VariableYaml
Source§impl<'de> Deserialize<'de> for VariableYaml
impl<'de> Deserialize<'de> for VariableYaml
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VariableYaml
impl RefUnwindSafe for VariableYaml
impl Send for VariableYaml
impl Sync for VariableYaml
impl Unpin for VariableYaml
impl UnsafeUnpin for VariableYaml
impl UnwindSafe for VariableYaml
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