#[non_exhaustive]pub enum TypedArrayType {
None,
Int8,
Int16,
Int32,
Int64,
Uint8,
Uint8Clamped,
Uint16,
Uint32,
Uint64,
Float32,
Float64,
}
Available on crate feature
v2_38
only.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.
Trait Implementations§
Source§impl Clone for TypedArrayType
impl Clone for TypedArrayType
Source§fn clone(&self) -> TypedArrayType
fn clone(&self) -> TypedArrayType
Returns a copy 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 TypedArrayType
impl Debug for TypedArrayType
Source§impl Hash for TypedArrayType
impl Hash for TypedArrayType
Source§impl Ord for TypedArrayType
impl Ord for TypedArrayType
Source§fn cmp(&self, other: &TypedArrayType) -> Ordering
fn cmp(&self, other: &TypedArrayType) -> 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 TypedArrayType
impl PartialEq for TypedArrayType
Source§impl PartialOrd for TypedArrayType
impl PartialOrd for TypedArrayType
impl Copy for TypedArrayType
impl Eq for TypedArrayType
impl StructuralPartialEq for TypedArrayType
Auto Trait Implementations§
impl Freeze for TypedArrayType
impl RefUnwindSafe for TypedArrayType
impl Send for TypedArrayType
impl Sync for TypedArrayType
impl Unpin for TypedArrayType
impl UnwindSafe for TypedArrayType
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