#[repr(u8)]pub enum NumericArrayEnum {
Integer8 = 0,
Integer16 = 1,
Integer32 = 2,
Integer64 = 3,
UnsignedInteger8 = 16,
UnsignedInteger16 = 17,
UnsignedInteger32 = 18,
UnsignedInteger64 = 19,
Real32 = 34,
Real64 = 35,
ComplexReal32 = 51,
ComplexReal64 = 52,
}Expand description
WXF element-type tag for NumericArray. Discriminants are the WXF wire bytes.
Variants§
Integer8 = 0
Integer16 = 1
Integer32 = 2
Integer64 = 3
UnsignedInteger8 = 16
UnsignedInteger16 = 17
UnsignedInteger32 = 18
UnsignedInteger64 = 19
Real32 = 34
Real64 = 35
ComplexReal32 = 51
ComplexReal64 = 52
Implementations§
Trait Implementations§
Source§impl Clone for NumericArrayEnum
impl Clone for NumericArrayEnum
Source§fn clone(&self) -> NumericArrayEnum
fn clone(&self) -> NumericArrayEnum
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 moreimpl Copy for NumericArrayEnum
Source§impl Debug for NumericArrayEnum
impl Debug for NumericArrayEnum
impl Eq for NumericArrayEnum
Source§impl From<PackedArrayEnum> for NumericArrayEnum
impl From<PackedArrayEnum> for NumericArrayEnum
Source§fn from(p: PackedArrayEnum) -> Self
fn from(p: PackedArrayEnum) -> Self
Converts to this type from the input type.
Source§impl Hash for NumericArrayEnum
impl Hash for NumericArrayEnum
Source§impl Ord for NumericArrayEnum
impl Ord for NumericArrayEnum
Source§fn cmp(&self, other: &NumericArrayEnum) -> Ordering
fn cmp(&self, other: &NumericArrayEnum) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NumericArrayEnum
impl PartialEq for NumericArrayEnum
Source§fn eq(&self, other: &NumericArrayEnum) -> bool
fn eq(&self, other: &NumericArrayEnum) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for NumericArrayEnum
impl PartialOrd for NumericArrayEnum
impl StructuralPartialEq for NumericArrayEnum
Source§impl TryFrom<NumericArrayEnum> for PackedArrayEnum
impl TryFrom<NumericArrayEnum> for PackedArrayEnum
Source§impl TryFrom<u8> for NumericArrayEnum
impl TryFrom<u8> for NumericArrayEnum
Source§type Error = TryFromPrimitiveError<NumericArrayEnum>
type Error = TryFromPrimitiveError<NumericArrayEnum>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for NumericArrayEnum
impl TryFromPrimitive for NumericArrayEnum
const NAME: &'static str = "NumericArrayEnum"
type Primitive = u8
type Error = TryFromPrimitiveError<NumericArrayEnum>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for NumericArrayEnum
impl RefUnwindSafe for NumericArrayEnum
impl Send for NumericArrayEnum
impl Sync for NumericArrayEnum
impl Unpin for NumericArrayEnum
impl UnsafeUnpin for NumericArrayEnum
impl UnwindSafe for NumericArrayEnum
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