pub enum ArraySuffix {
Dynamic,
Fixed(u64),
Bounded(u64),
}Variants§
Dynamic
[] — unbounded dynamic (Vec
Fixed(u64)
[N] — fixed size ([T; N])
Bounded(u64)
[<=N] — bounded dynamic (Vec
Trait Implementations§
Source§impl Clone for ArraySuffix
impl Clone for ArraySuffix
Source§fn clone(&self) -> ArraySuffix
fn clone(&self) -> ArraySuffix
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 ArraySuffix
impl Debug for ArraySuffix
Source§impl PartialEq for ArraySuffix
impl PartialEq for ArraySuffix
Source§fn eq(&self, other: &ArraySuffix) -> bool
fn eq(&self, other: &ArraySuffix) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ArraySuffix
impl StructuralPartialEq for ArraySuffix
Auto Trait Implementations§
impl Freeze for ArraySuffix
impl RefUnwindSafe for ArraySuffix
impl Send for ArraySuffix
impl Sync for ArraySuffix
impl Unpin for ArraySuffix
impl UnsafeUnpin for ArraySuffix
impl UnwindSafe for ArraySuffix
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