Struct bonsaidb_core::key::EnumKey
source · pub struct EnumKey<T>(pub T)
where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync;
Expand description
Adds Key
support to an enum. Requires implementing
ToPrimitive
and
FromPrimitive
, or using a crate like
num-derive to do it automatically.
Take care when using enums as keys: if the order changes or if the meaning
of existing numerical values changes, make sure to update any related views’
version number to ensure the values are re-evaluated.
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T> Clone for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Clone,
impl<T> Clone for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Clone,
source§impl<T> Debug for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Debug,
impl<T> Debug for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Debug,
source§impl<'k, T> Key<'k> for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync,
impl<'k, T> Key<'k> for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync,
source§const CAN_OWN_BYTES: bool = false
const CAN_OWN_BYTES: bool = false
If true, this type can benefit from an owned
Vec<u8>
. This flag is
used as a hint of whether to attempt to do memcpy operations in some
decoding operations to avoid extra allocations.source§fn from_ord_bytes<'b>(bytes: ByteSource<'k, 'b>) -> Result<Self, Self::Error>
fn from_ord_bytes<'b>(bytes: ByteSource<'k, 'b>) -> Result<Self, Self::Error>
Deserialize a sequence of bytes previously encoded with
KeyEncoding::as_ord_bytes
.source§fn first_value() -> Result<Self, NextValueError>
fn first_value() -> Result<Self, NextValueError>
Return the first value in sequence for this type. Not all types
implement this.
source§fn next_value(&self) -> Result<Self, NextValueError>
fn next_value(&self) -> Result<Self, NextValueError>
Return the next value in sequence for this type. Not all types implement
this. Instead of wrapping/overflowing, None should be returned.
source§impl<T> KeyEncoding<EnumKey<T>> for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync,
impl<T> KeyEncoding<EnumKey<T>> for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync,
source§const LENGTH: Option<usize> = None
const LENGTH: Option<usize> = None
The size of the key, if constant. If this type doesn’t produce the same
number of bytes for each value, this should be
None
.source§fn describe<Visitor>(visitor: &mut Visitor)where
Visitor: KeyVisitor,
fn describe<Visitor>(visitor: &mut Visitor)where Visitor: KeyVisitor,
Describes this type by invoking functions on
visitor
describing the
key being encoded. Read moresource§impl<T> Ord for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Ord,
impl<T> Ord for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Ord,
1.21.0 · 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
source§impl<T> PartialEq<EnumKey<T>> for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + PartialEq,
impl<T> PartialEq<EnumKey<T>> for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + PartialEq,
source§impl<T> PartialOrd<EnumKey<T>> for EnumKey<T>where
T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + PartialOrd,
impl<T> PartialOrd<EnumKey<T>> for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + PartialOrd,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<T> Copy for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Copy,
impl<T> Eq for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync + Eq,
impl<T> StructuralEq for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync,
impl<T> StructuralPartialEq for EnumKey<T>where T: ToPrimitive + FromPrimitive + Clone + Eq + Ord + Debug + Send + Sync,
Auto Trait Implementations§
impl<T> RefUnwindSafe for EnumKey<T>where T: RefUnwindSafe,
impl<T> Send for EnumKey<T>
impl<T> Sync for EnumKey<T>
impl<T> Unpin for EnumKey<T>where T: Unpin,
impl<T> UnwindSafe for EnumKey<T>where T: UnwindSafe,
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