Enum v8::fast_api::SequenceType
source · #[repr(u8)]
pub enum SequenceType {
Scalar,
IsSequence,
IsTypedArray,
IsArrayBuffer,
}
Variants§
Scalar
IsSequence
sequence
IsTypedArray
TypedArray of T or any ArrayBufferView if T is void
IsArrayBuffer
ArrayBuffer
Trait Implementations§
source§impl Clone for SequenceType
impl Clone for SequenceType
source§fn clone(&self) -> SequenceType
fn clone(&self) -> SequenceType
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 SequenceType
impl Debug for SequenceType
source§impl From<&Type> for SequenceType
impl From<&Type> for SequenceType
source§fn from(ty: &Type) -> SequenceType
fn from(ty: &Type) -> SequenceType
Converts to this type from the input type.
source§impl PartialEq<SequenceType> for SequenceType
impl PartialEq<SequenceType> for SequenceType
source§fn eq(&self, other: &SequenceType) -> bool
fn eq(&self, other: &SequenceType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.