pub enum JSValueType {
Undefined = 0,
Null = 1,
Boolean = 2,
Number = 3,
String = 4,
Object = 5,
Symbol = 6,
}
Expand description
A JavaScript value type.
Variants§
Trait Implementations§
Source§impl Debug for JSValueType
impl Debug for JSValueType
Source§impl PartialEq for JSValueType
impl PartialEq for JSValueType
impl StructuralPartialEq 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 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