Struct swc_ecma_utils::DestructuringFinder[][src]

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

Finds all binding idents of variables.

Fields

found: &'a mut Vec<I>

Trait Implementations

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

fn visit_expr(&mut self, _: &Expr, _: &dyn Node)[src]

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

fn visit_prop_name(&mut self, _: &PropName, _: &dyn Node)[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> From<T> for T[src]

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

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

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

impl<T> Sync for T where
    T: ?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.