pub trait DeclaredIdents {
// Provided method
fn declared_idents(&self) -> Vec<Ident> { ... }
}Provided Methods§
Sourcefn declared_idents(&self) -> Vec<Ident>
fn declared_idents(&self) -> Vec<Ident>
All of the identifiers (items) declared by this node. This is an approximation and should only be used for diagnostics.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".