pub(crate) trait FilterAttrs<'a> {
type Ret: Iterator<Item = &'a Attribute>;
// Required methods
fn outer(self) -> Self::Ret;
fn inner(self) -> Self::Ret;
}Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Source§impl<'a> FilterAttrs<'a> for &'a [Attribute]
Available on crate feature printing only.
impl<'a> FilterAttrs<'a> for &'a [Attribute]
Available on crate feature
printing only.