pub trait ToIdentWithPrefix {
// Required method
fn to_ident_with_prefix<S: AsRef<str>>(&self, prefix: S) -> Ident;
}
Required Methods§
fn to_ident_with_prefix<S: AsRef<str>>(&self, prefix: S) -> Ident
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.