#[repr(transparent)]pub struct ColKind(pub u8);Tuple Fields§
§0: u8Implementations§
Source§impl ColKind
impl ColKind
pub const node: Self
pub const rel: Self
pub const value: Self
pub const bool: Self
pub const int64: Self
pub const float64: Self
pub const string: Self
pub const null: Self
pub const list: Self
pub const map: Self
pub const path: Self
pub const graph: Self
pub const vector: Self
pub const ENUM_MIN: u8 = 0
pub const ENUM_MAX: u8 = 12
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 EndianScalar for ColKind
impl EndianScalar for ColKind
Source§impl Ord for ColKind
impl Ord for ColKind
Source§impl PartialOrd for ColKind
impl PartialOrd for ColKind
Source§impl<'a> Verifiable for ColKind
impl<'a> Verifiable for ColKind
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 ColKind
impl Eq for ColKind
impl SimpleToVerifyInSlice for ColKind
impl StructuralPartialEq for ColKind
Auto Trait Implementations§
impl Freeze for ColKind
impl RefUnwindSafe for ColKind
impl Send for ColKind
impl Sync for ColKind
impl Unpin for ColKind
impl UnsafeUnpin for ColKind
impl UnwindSafe for ColKind
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