pub enum JSValueType {
Show 17 variants
Undefined,
Null,
Error,
Exception,
Boolean,
Number,
BigInt,
String,
Object,
Array,
ArrayBuffer,
Function,
Constructor,
Promise,
Symbol,
Date,
Unknown,
}Variants§
Undefined
Null
Error
Exception
Boolean
Number
BigInt
String
Object
Array
ArrayBuffer
Function
Constructor
Promise
Symbol
Date
Unknown
Trait Implementations§
Source§impl Clone for JSValueType
impl Clone for JSValueType
Source§fn clone(&self) -> JSValueType
fn clone(&self) -> JSValueType
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 JSValueType
impl Debug for JSValueType
Auto Trait Implementations§
impl Freeze for JSValueType
impl RefUnwindSafe for JSValueType
impl Send for JSValueType
impl Sync for JSValueType
impl Unpin for JSValueType
impl UnsafeUnpin for JSValueType
impl UnwindSafe for JSValueType
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