#[repr(i16)]pub enum DictionaryKind {
DenseArray = 0,
}Expand description
Dictionary encoding metadata Maintained for forwards compatibility, in the future Dictionaries might be explicit maps between integers and values allowing for non-contiguous index values
Generated from these locations:
- Enum
DictionaryKindin the fileSchema.fbs:485
Variants§
DenseArray = 0
The variant DenseArray in the enum DictionaryKind
Implementations§
Source§impl DictionaryKind
impl DictionaryKind
Sourcepub const ENUM_VALUES: [Self; 1]
pub const ENUM_VALUES: [Self; 1]
Array containing all valid variants of DictionaryKind
Trait Implementations§
Source§impl Clone for DictionaryKind
impl Clone for DictionaryKind
Source§fn clone(&self) -> DictionaryKind
fn clone(&self) -> DictionaryKind
Returns a copy 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 DictionaryKind
impl Debug for DictionaryKind
Source§impl<'de> Deserialize<'de> for DictionaryKind
impl<'de> Deserialize<'de> for DictionaryKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<DictionaryKind> for i16
impl From<DictionaryKind> for i16
Source§fn from(value: DictionaryKind) -> Self
fn from(value: DictionaryKind) -> Self
Converts to this type from the input type.
Source§impl Hash for DictionaryKind
impl Hash for DictionaryKind
Source§impl Ord for DictionaryKind
impl Ord for DictionaryKind
Source§fn cmp(&self, other: &DictionaryKind) -> Ordering
fn cmp(&self, other: &DictionaryKind) -> Ordering
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 PartialEq for DictionaryKind
impl PartialEq for DictionaryKind
Source§impl PartialOrd for DictionaryKind
impl PartialOrd for DictionaryKind
Source§impl Serialize for DictionaryKind
impl Serialize for DictionaryKind
Source§impl TryFrom<i16> for DictionaryKind
impl TryFrom<i16> for DictionaryKind
Source§type Error = UnknownEnumTagKind
type Error = UnknownEnumTagKind
The type returned in the event of a conversion error.
impl Copy for DictionaryKind
impl Eq for DictionaryKind
impl StructuralPartialEq for DictionaryKind
impl VectorWrite<DictionaryKind> for DictionaryKind
§Safety
The planus compiler generates implementations that initialize
the bytes in write_values.
impl WriteAs<DictionaryKind> for DictionaryKind
impl WriteAsDefault<DictionaryKind, DictionaryKind> for DictionaryKind
impl WriteAsOptional<DictionaryKind> for DictionaryKind
Auto Trait Implementations§
impl Freeze for DictionaryKind
impl RefUnwindSafe for DictionaryKind
impl Send for DictionaryKind
impl Sync for DictionaryKind
impl Unpin for DictionaryKind
impl UnwindSafe for DictionaryKind
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more