pub enum LargeValueKind {
Blob,
Typed(u16),
}Expand description
Identifies whether the large value is typed or opaque.
Variants§
Blob
Opaque BLOB without a type identifier.
Typed(u16)
Typed payload with a user-provided type identifier.
Trait Implementations§
Source§impl Clone for LargeValueKind
impl Clone for LargeValueKind
Source§fn clone(&self) -> LargeValueKind
fn clone(&self) -> LargeValueKind
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 LargeValueKind
Source§impl Debug for LargeValueKind
impl Debug for LargeValueKind
impl Eq for LargeValueKind
Source§impl PartialEq for LargeValueKind
impl PartialEq for LargeValueKind
impl StructuralPartialEq for LargeValueKind
Auto Trait Implementations§
impl Freeze for LargeValueKind
impl RefUnwindSafe for LargeValueKind
impl Send for LargeValueKind
impl Sync for LargeValueKind
impl Unpin for LargeValueKind
impl UnsafeUnpin for LargeValueKind
impl UnwindSafe for LargeValueKind
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