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