pub enum UncertaintyNotation {
Parenthetical,
Plusminus,
Range,
Percent,
}Expand description
Uncertainty notation format.
Variants§
Parenthetical
Parenthetical notation, e.g., 1.234(5).
Plusminus
Plus-minus notation, e.g., 1.234 ± 0.005.
Range
Range notation, e.g., 1.229–1.239.
Percent
Percentage notation, e.g., 1.234 ± 0.4%.
Trait Implementations§
Source§impl Clone for UncertaintyNotation
impl Clone for UncertaintyNotation
Source§fn clone(&self) -> UncertaintyNotation
fn clone(&self) -> UncertaintyNotation
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 UncertaintyNotation
impl Debug for UncertaintyNotation
Source§impl<'de> Deserialize<'de> for UncertaintyNotation
impl<'de> Deserialize<'de> for UncertaintyNotation
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 UncertaintyNotation
impl PartialEq for UncertaintyNotation
Source§impl Serialize for UncertaintyNotation
impl Serialize for UncertaintyNotation
impl Copy for UncertaintyNotation
impl Eq for UncertaintyNotation
impl StructuralPartialEq for UncertaintyNotation
Auto Trait Implementations§
impl Freeze for UncertaintyNotation
impl RefUnwindSafe for UncertaintyNotation
impl Send for UncertaintyNotation
impl Sync for UncertaintyNotation
impl Unpin for UncertaintyNotation
impl UnsafeUnpin for UncertaintyNotation
impl UnwindSafe for UncertaintyNotation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.