Trait pmutil::IdentExt[][src]

pub trait IdentExt {
    fn new_ident_with<F, S>(&self, map: F) -> Ident
    where
        F: for<'a> FnOnce(&'a str) -> S,
        S: AsRef<str>
; }

Extension trait for syn::Ident.

Required Methods

Creates a new ident with same span by applying map to self.

Implementors