pub enum IdxType {
I64,
F64,
Str,
}Expand description
Declared scalar type for Connection::idx_create_range
(TYPE i64|f64|str). Vector/ANN indexes have extra required
options — declare those via Connection::idx_create_raw.
Variants§
I64
TYPE i64 — signed 64-bit integer field.
F64
TYPE f64 — finite 64-bit float field.
Str
TYPE str — raw bytes, memcmp order.
Trait Implementations§
impl Copy for IdxType
impl Eq for IdxType
impl StructuralPartialEq for IdxType
Auto Trait Implementations§
impl Freeze for IdxType
impl RefUnwindSafe for IdxType
impl Send for IdxType
impl Sync for IdxType
impl Unpin for IdxType
impl UnsafeUnpin for IdxType
impl UnwindSafe for IdxType
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