pub(crate) trait AttributesExt {
type AttributeIterator<'a>: Iterator<Item = NestedMetaItem>
where
Self: 'a;
fn lists<'a>(&'a self, name: Symbol) -> Self::AttributeIterator<'a>;
fn span(&self) -> Option<Span>;
fn inner_docs(&self) -> bool;
fn cfg(
&self,
tcx: TyCtxt<'_>,
hidden_cfg: &FxHashSet<Cfg>
) -> Option<Arc<Cfg>>;
}
Required Associated Types
sourcetype AttributeIterator<'a>: Iterator<Item = NestedMetaItem>
type AttributeIterator<'a>: Iterator<Item = NestedMetaItem>
where
Self: 'a
Required Methods
source
fn lists<'a>(&'a self, name: Symbol) -> Self::AttributeIterator<'a>
source
fn inner_docs(&self) -> bool
Implementations on Foreign Types
sourceimpl AttributesExt for [Attribute]
impl AttributesExt for [Attribute]
sourcefn inner_docs(&self) -> bool
fn inner_docs(&self) -> bool
Returns whether the first doc-comment is an inner attribute.
FIXME(#78591): Support both inner and outer attributes on the same item.