pub trait IgnoreName {
type Unnamed<'a>
where Self: 'a;
// Required method
fn ignore_name(&self) -> Self::Unnamed<'_>;
}Expand description
ABI entity wrapper.
Required Associated Types§
Required Methods§
Sourcefn ignore_name(&self) -> Self::Unnamed<'_>
fn ignore_name(&self) -> Self::Unnamed<'_>
Wraps an ABI entity into WithoutName.
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.