#[repr(u32)]pub enum DataPrecision {
Undefined = 0,
Float = 1,
Double = 2,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DataPrecision
impl Clone for DataPrecision
Source§fn clone(&self) -> DataPrecision
fn clone(&self) -> DataPrecision
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataPrecision
impl Debug for DataPrecision
Source§impl PartialEq for DataPrecision
impl PartialEq for DataPrecision
Source§fn eq(&self, other: &DataPrecision) -> bool
fn eq(&self, other: &DataPrecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DataPrecision
impl Eq for DataPrecision
impl StructuralPartialEq for DataPrecision
Auto Trait Implementations§
impl Freeze for DataPrecision
impl RefUnwindSafe for DataPrecision
impl Send for DataPrecision
impl Sync for DataPrecision
impl Unpin for DataPrecision
impl UnsafeUnpin for DataPrecision
impl UnwindSafe for DataPrecision
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