pub enum StorageRepr {
Bool,
I64,
F64,
Text,
Bytes,
}Expand description
Exact physical representation requested from a storage provider.
Variants§
Bool
Boolean bit.
I64
Signed 64-bit integer.
F64
Finite IEEE-754 binary64 value.
Text
UTF-8 text.
Bytes
Arbitrary bytes.
Trait Implementations§
Source§impl Clone for StorageRepr
impl Clone for StorageRepr
Source§fn clone(&self) -> StorageRepr
fn clone(&self) -> StorageRepr
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 moreimpl Copy for StorageRepr
Source§impl Debug for StorageRepr
impl Debug for StorageRepr
impl Eq for StorageRepr
Source§impl Hash for StorageRepr
impl Hash for StorageRepr
Source§impl Ord for StorageRepr
impl Ord for StorageRepr
Source§fn cmp(&self, other: &StorageRepr) -> Ordering
fn cmp(&self, other: &StorageRepr) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for StorageRepr
impl PartialEq for StorageRepr
Source§impl PartialOrd for StorageRepr
impl PartialOrd for StorageRepr
impl StructuralPartialEq for StorageRepr
Auto Trait Implementations§
impl Freeze for StorageRepr
impl RefUnwindSafe for StorageRepr
impl Send for StorageRepr
impl Sync for StorageRepr
impl Unpin for StorageRepr
impl UnsafeUnpin for StorageRepr
impl UnwindSafe for StorageRepr
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