Enum rust_jsc::JSTypedArrayType
source · pub enum JSTypedArrayType {
Show 13 variants
Int8Array = 0,
Int16Array = 1,
Int32Array = 2,
Uint8Array = 3,
Uint8ClampedArray = 4,
Uint16Array = 5,
Uint32Array = 6,
Float32Array = 7,
Float64Array = 8,
ArrayBuffer = 9,
None = 10,
BigInt64Array = 11,
BigUint64Array = 12,
}Variants§
Int8Array = 0
Int16Array = 1
Int32Array = 2
Uint8Array = 3
Uint8ClampedArray = 4
Uint16Array = 5
Uint32Array = 6
Float32Array = 7
Float64Array = 8
ArrayBuffer = 9
None = 10
BigInt64Array = 11
BigUint64Array = 12
Trait Implementations§
source§impl Debug for JSTypedArrayType
impl Debug for JSTypedArrayType
source§impl Default for JSTypedArrayType
impl Default for JSTypedArrayType
source§impl Into<u32> for JSTypedArrayType
impl Into<u32> for JSTypedArrayType
source§fn into(self) -> MJSTypedArrayType
fn into(self) -> MJSTypedArrayType
Converts this type into the (usually inferred) input type.
source§impl PartialEq for JSTypedArrayType
impl PartialEq for JSTypedArrayType
source§fn eq(&self, other: &JSTypedArrayType) -> bool
fn eq(&self, other: &JSTypedArrayType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for JSTypedArrayType
Auto Trait Implementations§
impl Freeze for JSTypedArrayType
impl RefUnwindSafe for JSTypedArrayType
impl Send for JSTypedArrayType
impl Sync for JSTypedArrayType
impl Unpin for JSTypedArrayType
impl UnwindSafe for JSTypedArrayType
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