pub struct VarEntry {
pub name: String,
pub value: f32,
pub default: f32,
pub changed: bool,
}Expand description
A variable entry.
Fields§
§name: String§value: f32§default: f32§changed: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for VarEntry
impl RefUnwindSafe for VarEntry
impl Send for VarEntry
impl Sync for VarEntry
impl Unpin for VarEntry
impl UnsafeUnpin for VarEntry
impl UnwindSafe for VarEntry
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