#[repr(i32)]pub enum flann_datatype_t {
FLANN_INT8 = 0,
FLANN_INT16 = 1,
FLANN_INT32 = 2,
FLANN_INT64 = 3,
FLANN_UINT8 = 4,
FLANN_UINT16 = 5,
FLANN_UINT32 = 6,
FLANN_UINT64 = 7,
FLANN_FLOAT32 = 8,
FLANN_FLOAT64 = 9,
}
Variants§
FLANN_INT8 = 0
FLANN_INT16 = 1
FLANN_INT32 = 2
FLANN_INT64 = 3
FLANN_UINT8 = 4
FLANN_UINT16 = 5
FLANN_UINT32 = 6
FLANN_UINT64 = 7
FLANN_FLOAT32 = 8
FLANN_FLOAT64 = 9
Trait Implementations§
Source§impl Clone for flann_datatype_t
impl Clone for flann_datatype_t
Source§fn clone(&self) -> flann_datatype_t
fn clone(&self) -> flann_datatype_t
Returns a duplicate 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 flann_datatype_t
impl Debug for flann_datatype_t
Source§impl From<flann_datatype_t> for i32
impl From<flann_datatype_t> for i32
Source§fn from(v: flann_datatype_t) -> Self
fn from(v: flann_datatype_t) -> Self
Converts to this type from the input type.
Source§impl PartialEq for flann_datatype_t
impl PartialEq for flann_datatype_t
Source§impl TryFrom<i32> for flann_datatype_t
impl TryFrom<i32> for flann_datatype_t
impl Copy for flann_datatype_t
impl Eq for flann_datatype_t
impl StructuralPartialEq for flann_datatype_t
Auto Trait Implementations§
impl Freeze for flann_datatype_t
impl RefUnwindSafe for flann_datatype_t
impl Send for flann_datatype_t
impl Sync for flann_datatype_t
impl Unpin for flann_datatype_t
impl UnwindSafe for flann_datatype_t
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