pub enum IndexValType {
Vector,
I64,
F64,
Str,
}Expand description
Declared scalar type of an index (TYPE i64|f64|str).
Variants§
Vector
v2.8: f32 LE vector blob (ANN kinds parse the field themselves — never coerced through IndexValue).
I64
Signed 64-bit integer.
F64
Finite 64-bit float (NaN coerce-fails).
Str
Raw bytes, memcmp order.
Implementations§
Trait Implementations§
impl Copy for ValType
impl Eq for ValType
impl StructuralPartialEq for ValType
Auto Trait Implementations§
impl Freeze for ValType
impl RefUnwindSafe for ValType
impl Send for ValType
impl Sync for ValType
impl Unpin for ValType
impl UnsafeUnpin for ValType
impl UnwindSafe for ValType
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