pub trait IdentExt {
// Required method
fn new_ident_with<F, S>(&self, map: F) -> Ident
where F: for<'a> FnOnce(&'a str) -> S,
S: AsRef<str>;
}
Expand description
Extension trait for syn::Ident.
Required Methods§
Object Safety§
This trait is not object safe.