Trait stageleft::IntoQuotedOnce

source ·
pub trait IntoQuotedOnce<'a, T, Ctx>:
    for<'b> FnOnce(&'b Ctx, &mut String, &mut &'static str, &mut TokenStream, &mut CaptureVec, bool) -> T
    + 'a
    + QuotedWithContext<'a, T, Ctx> {
    // Provided method
    fn boxed(self) -> Box<dyn IntoQuotedOnce<'a, T, Ctx>>
       where Self: Sized { ... }
}

Provided Methods§

source

fn boxed(self) -> Box<dyn IntoQuotedOnce<'a, T, Ctx>>
where Self: Sized,

Implementors§

source§

impl<'a, T, Ctx, F: for<'b> FnOnce(&'b Ctx, &mut String, &mut &'static str, &mut TokenStream, &mut CaptureVec, bool) -> T + 'a> IntoQuotedOnce<'a, T, Ctx> for F