pub enum Visitor<T: Dealloc> {
Number(f64),
Null,
Bool(bool),
String(JsStringRef<T>),
Object(JsObjectRef<T>),
Array(JsArrayRef<T>),
Bigint(JsBigintRef<T>),
}
Variants§
Number(f64)
Null
Bool(bool)
String(JsStringRef<T>)
Object(JsObjectRef<T>)
Array(JsArrayRef<T>)
Bigint(JsBigintRef<T>)
Auto Trait Implementations§
impl<T> Freeze for Visitor<T>
impl<T> RefUnwindSafe for Visitor<T>
impl<T> !Send for Visitor<T>
impl<T> !Sync for Visitor<T>
impl<T> Unpin for Visitor<T>
impl<T> UnwindSafe for Visitor<T>
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