pub(crate) trait AttributeListExt {
// Required methods
fn report_unused(&self, on: &str) -> Result<()>;
fn lower(
&self,
handler: &mut impl FnMut(&Loc<Attribute>) -> Result<()>,
) -> Result<()>;
}
Required Methods§
fn report_unused(&self, on: &str) -> Result<()>
fn lower( &self, handler: &mut impl FnMut(&Loc<Attribute>) -> Result<()>, ) -> Result<()>
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.