#[repr(u8)]pub enum JsonbType {
Null = 0,
True = 1,
False = 2,
Integer = 3,
Real = 4,
String = 5,
Array = 6,
Object = 7,
}Variants§
Trait Implementations§
impl Copy for JsonbType
impl Eq for JsonbType
impl StructuralPartialEq for JsonbType
Auto Trait Implementations§
impl Freeze for JsonbType
impl RefUnwindSafe for JsonbType
impl Send for JsonbType
impl Sync for JsonbType
impl Unpin for JsonbType
impl UnsafeUnpin for JsonbType
impl UnwindSafe for JsonbType
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.