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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.