#[non_exhaustive]#[repr(u8)]pub enum ArrayType {
Array = 0,
ScalingAxis = 1,
LookUp = 2,
IntervalAxis = 3,
ClassificationResult = 4,
}Expand description
\brief Type of array.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Array = 0
< Simple array without attributes
ScalingAxis = 1
< Scaling axis.
LookUp = 2
< Lookup array.
IntervalAxis = 3
< Interval axis.
ClassificationResult = 4
< Classification result.
Trait Implementations§
Source§impl Ord for ArrayType
impl Ord for ArrayType
Source§impl PartialOrd for ArrayType
impl PartialOrd for ArrayType
impl Copy for ArrayType
impl Eq for ArrayType
impl StructuralPartialEq for ArrayType
Auto Trait Implementations§
impl Freeze for ArrayType
impl RefUnwindSafe for ArrayType
impl Send for ArrayType
impl Sync for ArrayType
impl Unpin for ArrayType
impl UnsafeUnpin for ArrayType
impl UnwindSafe for ArrayType
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