[][src]Struct swc_ecma_transforms::pass::JoinedPass

pub struct JoinedPass<A, B, N> {
    pub first: A,
    pub second: B,
    pub ty: PhantomData<N>,
}

Fields

first: Asecond: Bty: PhantomData<N>

Trait Implementations

impl<A: Clone, B: Clone, N: Clone> Clone for JoinedPass<A, B, N>[src]

impl<A: Copy, B: Copy, N: Copy> Copy for JoinedPass<A, B, N>[src]

impl<A: Debug, B: Debug, N: Debug> Debug for JoinedPass<A, B, N>[src]

impl<A, B, T> Fold<T> for JoinedPass<A, B, T> where
    T: FoldWith<Self>,
    A: Fold<T>,
    B: Fold<T>, 
[src]

impl<A, B, T, N> Fold<T> for JoinedPass<A, B, N> where
    T: FoldWith<Self>, 
[src]

Auto Trait Implementations

impl<A, B, N> RefUnwindSafe for JoinedPass<A, B, N> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    N: RefUnwindSafe

impl<A, B, N> Send for JoinedPass<A, B, N> where
    A: Send,
    B: Send,
    N: Send

impl<A, B, N> Sync for JoinedPass<A, B, N> where
    A: Sync,
    B: Sync,
    N: Sync

impl<A, B, N> Unpin for JoinedPass<A, B, N> where
    A: Unpin,
    B: Unpin,
    N: Unpin

impl<A, B, N> UnwindSafe for JoinedPass<A, B, N> where
    A: UnwindSafe,
    B: UnwindSafe,
    N: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]