pub struct ValueEntry {
pub value: f32,
pub version: u32,
pub dirty: bool,
}Expand description
A cached value entry.
Fields§
§value: f32§version: u32§dirty: boolTrait Implementations§
Source§impl Clone for ValueEntry
impl Clone for ValueEntry
Source§fn clone(&self) -> ValueEntry
fn clone(&self) -> ValueEntry
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 moreAuto Trait Implementations§
impl Freeze for ValueEntry
impl RefUnwindSafe for ValueEntry
impl Send for ValueEntry
impl Sync for ValueEntry
impl Unpin for ValueEntry
impl UnsafeUnpin for ValueEntry
impl UnwindSafe for ValueEntry
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