[][src]Struct swc_common::pass::Repeat

pub struct Repeat<P, At> where
    P: RepeatedPass<At>, 
{ /* fields omitted */ }

Methods

impl<P, At> Repeat<P, At> where
    P: RepeatedPass<At>, 
[src]

pub fn new(pass: P) -> Self[src]

Trait Implementations

impl<P: Clone, At: Clone> Clone for Repeat<P, At> where
    P: RepeatedPass<At>, 
[src]

impl<P, At> CompilerPass for Repeat<P, At> where
    P: RepeatedPass<At>, 
[src]

impl<P: Copy, At: Copy> Copy for Repeat<P, At> where
    P: RepeatedPass<At>, 
[src]

impl<P: Debug, At: Debug> Debug for Repeat<P, At> where
    P: RepeatedPass<At>, 
[src]

impl<P, At> Repeated for Repeat<P, At> where
    P: RepeatedPass<At>, 
[src]

Auto Trait Implementations

impl<P, At> RefUnwindSafe for Repeat<P, At> where
    At: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, At> Send for Repeat<P, At> where
    At: Send,
    P: Send

impl<P, At> Sync for Repeat<P, At> where
    At: Sync,
    P: Sync

impl<P, At> Unpin for Repeat<P, At> where
    At: Unpin,
    P: Unpin

impl<P, At> UnwindSafe for Repeat<P, At> where
    At: UnwindSafe,
    P: 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> From<T> for T[src]

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

impl<T, P> RepeatedPass<T> for P where
    P: CompilerPass + Repeated
[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.