pub struct LeveledValue {
pub level: u32,
pub value: Option<Value>,
pub value_sd: Option<Value>,
pub value_hd: Option<Value>,
}Fields§
§level: u32§value: Option<Value>§value_sd: Option<Value>§value_hd: Option<Value>Trait Implementations§
Source§impl Clone for LeveledValue
impl Clone for LeveledValue
Source§fn clone(&self) -> LeveledValue
fn clone(&self) -> LeveledValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LeveledValue
impl Debug for LeveledValue
Source§impl<'de> Deserialize<'de> for LeveledValue
impl<'de> Deserialize<'de> for LeveledValue
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
Source§impl PartialEq for LeveledValue
impl PartialEq for LeveledValue
Source§fn eq(&self, other: &LeveledValue) -> bool
fn eq(&self, other: &LeveledValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeveledValue
impl Serialize for LeveledValue
impl StructuralPartialEq for LeveledValue
Auto Trait Implementations§
impl Freeze for LeveledValue
impl RefUnwindSafe for LeveledValue
impl Send for LeveledValue
impl Sync for LeveledValue
impl Unpin for LeveledValue
impl UnsafeUnpin for LeveledValue
impl UnwindSafe for LeveledValue
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