#[non_exhaustive]#[repr(u8)]pub enum ArrayStorage {
CnTemplate = 0,
CgTemplate = 1,
DgTemplate = 2,
}Expand description
\brief Type of storage.
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.
CnTemplate = 0
< Channel template.
CgTemplate = 1
< Channel group template.
DgTemplate = 2
< Data group template.
Trait Implementations§
Source§impl Clone for ArrayStorage
impl Clone for ArrayStorage
Source§fn clone(&self) -> ArrayStorage
fn clone(&self) -> ArrayStorage
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 ArrayStorage
impl Debug for ArrayStorage
Source§impl Hash for ArrayStorage
impl Hash for ArrayStorage
Source§impl Ord for ArrayStorage
impl Ord for ArrayStorage
Source§fn cmp(&self, other: &ArrayStorage) -> Ordering
fn cmp(&self, other: &ArrayStorage) -> Ordering
1.21.0 · 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 ArrayStorage
impl PartialEq for ArrayStorage
Source§impl PartialOrd for ArrayStorage
impl PartialOrd for ArrayStorage
impl Copy for ArrayStorage
impl Eq for ArrayStorage
impl StructuralPartialEq for ArrayStorage
Auto Trait Implementations§
impl Freeze for ArrayStorage
impl RefUnwindSafe for ArrayStorage
impl Send for ArrayStorage
impl Sync for ArrayStorage
impl Unpin for ArrayStorage
impl UnsafeUnpin for ArrayStorage
impl UnwindSafe for ArrayStorage
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