#[repr(transparent)]pub struct DictionaryKind(pub i16);
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
Tuple Fields§
§0: i16
Implementations§
Source§impl DictionaryKind
impl DictionaryKind
pub const DenseArray: Self = _
pub const ENUM_MIN: i16 = 0i16
pub const ENUM_MAX: i16 = 0i16
pub const ENUM_VALUES: &'static [Self] = _
Sourcepub fn variant_name(self) -> Option<&'static str>
pub fn variant_name(self) -> Option<&'static str>
Returns the variant’s name or “” if unknown.
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 Default for DictionaryKind
impl Default for DictionaryKind
Source§fn default() -> DictionaryKind
fn default() -> DictionaryKind
Returns the “default value” for a type. Read more
Source§impl EndianScalar for DictionaryKind
impl EndianScalar for DictionaryKind
Source§impl<'a> Follow<'a> for DictionaryKind
impl<'a> Follow<'a> for DictionaryKind
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 Push for DictionaryKind
impl Push for DictionaryKind
Source§impl<'a> Verifiable for DictionaryKind
impl<'a> Verifiable for DictionaryKind
Source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize,
) -> Result<(), InvalidFlatbuffer>
fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize, ) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos
in the verifier’s buffer.
Should not need to be called directly.impl Copy for DictionaryKind
impl Eq for DictionaryKind
impl SimpleToVerifyInSlice for DictionaryKind
impl StructuralPartialEq 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