Struct swc_common::pass::All
source · [−]pub struct All<V> {
pub visitor: V,
}
Expand description
Visit all children nodes. This converts VisitAll
to Visit
. The type
parameter V
should implement VisitAll
and All<V>
implements Visit
.
Fields
visitor: V
Trait Implementations
sourceimpl<V> PartialEq<All<V>> for All<V>where
V: PartialEq<V>,
impl<V> PartialEq<All<V>> for All<V>where
V: PartialEq<V>,
impl<V> Copy for All<V>where
V: Copy,
impl<V> Eq for All<V>where
V: Eq,
impl<V> StructuralEq for All<V>
impl<V> StructuralPartialEq for All<V>
Auto Trait Implementations
impl<V> RefUnwindSafe for All<V>where
V: RefUnwindSafe,
impl<V> Send for All<V>where
V: Send,
impl<V> Sync for All<V>where
V: Sync,
impl<V> Unpin for All<V>where
V: Unpin,
impl<V> UnwindSafe for All<V>where
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more