[][src]Struct swc_ecma_transforms::util::DestructuringFinder

pub struct DestructuringFinder<'a, I> where
    I: IdentLike
{ pub found: &'a mut Vec<I>, }

Finds all idents of variable

Fields

found: &'a mut Vec<I>

Trait Implementations

impl<'a, I> Visit<Expr> for DestructuringFinder<'a, I> where
    I: IdentLike
[src]

fn visit(&mut self, &Expr)[src]

No-op (we don't care about expressions)

impl<'a, I> Visit<Ident> for DestructuringFinder<'a, I> where
    I: IdentLike
[src]

impl<'a, I> Visit<PropName> for DestructuringFinder<'a, I> where
    I: IdentLike
[src]

fn visit(&mut self, &PropName)[src]

No-op (we don't care about expressions)

Auto Trait Implementations

impl<'a, I> RefUnwindSafe for DestructuringFinder<'a, I> where
    I: RefUnwindSafe

impl<'a, I> Send for DestructuringFinder<'a, I> where
    I: Send

impl<'a, I> Sync for DestructuringFinder<'a, I> where
    I: Sync

impl<'a, I> Unpin for DestructuringFinder<'a, I>

impl<'a, I> !UnwindSafe for DestructuringFinder<'a, I>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T, F> Fold<T> for F where
    T: FoldWith<F>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<P> Pass for P where
    P: Fold<Module> + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, F> Visit<T> for F where
    T: VisitWith<F> + ?Sized
[src]

impl<T, F> VisitMut<T> for F where
    T: VisitMutWith<F> + ?Sized
[src]