pub trait IntoIdents {
// Required method
fn into_idents(self) -> impl Iterator<Item = Ident>;
}
Required Methods§
fn into_idents(self) -> impl Iterator<Item = 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.