pub struct Variable {
pub name: String,
pub value: f64,
pub unit: Option<String>,
}Expand description
A variable binding for equation evaluation
Fields§
§name: StringVariable name
value: f64Current value
unit: Option<String>Optional unit (for documentation)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnsafeUnpin for Variable
impl UnwindSafe for Variable
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