pub enum NormalizedValue {
Null,
Bool(bool),
Integer(BigInt),
Float(NormalizedFloat),
String(String),
Temporal(NormalizedTemporal),
Sequence(Vec<NormalizedValue>),
Mapping(Vec<NormalizedEntry>),
Set(Vec<NormalizedKey>),
}Variants§
Null
Bool(bool)
Integer(BigInt)
Float(NormalizedFloat)
String(String)
Temporal(NormalizedTemporal)
Sequence(Vec<NormalizedValue>)
Mapping(Vec<NormalizedEntry>)
Set(Vec<NormalizedKey>)
Trait Implementations§
Source§impl Clone for NormalizedValue
impl Clone for NormalizedValue
Source§fn clone(&self) -> NormalizedValue
fn clone(&self) -> NormalizedValue
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 NormalizedValue
impl Debug for NormalizedValue
Source§impl PartialEq for NormalizedValue
impl PartialEq for NormalizedValue
impl StructuralPartialEq for NormalizedValue
Auto Trait Implementations§
impl Freeze for NormalizedValue
impl RefUnwindSafe for NormalizedValue
impl Send for NormalizedValue
impl Sync for NormalizedValue
impl Unpin for NormalizedValue
impl UnsafeUnpin for NormalizedValue
impl UnwindSafe for NormalizedValue
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