pub enum Visitor<T: Dealloc> {
Number(f64),
Null,
Bool(bool),
String(JsStringRef<T>),
Object(JsObjectRef<T>),
Array(JsArrayRef<T>),
}
Variants§
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