pub enum TypedArray {
Uint8Array,
Int8Array,
Uint16Array,
Int16Array,
Uint32Array,
Int32Array,
Float32Array,
Float64Array,
BigInt64Array,
BigUint64Array,
}
Variants§
Uint8Array
Int8Array
Uint16Array
Int16Array
Uint32Array
Int32Array
Float32Array
Float64Array
BigInt64Array
BigUint64Array
Trait Implementations§
Source§impl Clone for TypedArray
impl Clone for TypedArray
Source§fn clone(&self) -> TypedArray
fn clone(&self) -> TypedArray
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 TypedArray
impl Debug for TypedArray
Source§impl PartialEq for TypedArray
impl PartialEq for TypedArray
impl StructuralPartialEq for TypedArray
Auto Trait Implementations§
impl Freeze for TypedArray
impl RefUnwindSafe for TypedArray
impl Send for TypedArray
impl Sync for TypedArray
impl Unpin for TypedArray
impl UnwindSafe for TypedArray
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