Struct hir_def::item_tree::ItemTree

source ·
pub struct ItemTree { /* private fields */ }
Expand description

The item tree of a source file.

Implementations§

source§

impl ItemTree

source

pub fn top_level_items(&self) -> &[ModItem]

Returns an iterator over all items located at the top level of the HirFileId this ItemTree was created from.

source

pub fn top_level_attrs(&self, db: &dyn DefDatabase, krate: CrateId) -> Attrs

Returns the inner attributes of the source file.

source

pub fn pretty_print(&self, db: &dyn DefDatabase) -> String

Trait Implementations§

source§

impl Debug for ItemTree

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ItemTree

source§

fn default() -> ItemTree

Returns the “default value” for a type. Read more
source§

impl<N: ItemTreeNode> Index<FileItemTreeId<N>> for ItemTree

§

type Output = N

The returned type after indexing.
source§

fn index(&self, id: FileItemTreeId<N>) -> &N

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Const>> for ItemTree

§

type Output = Const

The returned type after indexing.
source§

fn index(&self, index: Idx<Const>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Enum>> for ItemTree

§

type Output = Enum

The returned type after indexing.
source§

fn index(&self, index: Idx<Enum>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<ExternBlock>> for ItemTree

§

type Output = ExternBlock

The returned type after indexing.
source§

fn index(&self, index: Idx<ExternBlock>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<ExternCrate>> for ItemTree

§

type Output = ExternCrate

The returned type after indexing.
source§

fn index(&self, index: Idx<ExternCrate>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Field>> for ItemTree

§

type Output = Field

The returned type after indexing.
source§

fn index(&self, index: Idx<Field>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Function>> for ItemTree

§

type Output = Function

The returned type after indexing.
source§

fn index(&self, index: Idx<Function>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Impl>> for ItemTree

§

type Output = Impl

The returned type after indexing.
source§

fn index(&self, index: Idx<Impl>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Macro2>> for ItemTree

§

type Output = Macro2

The returned type after indexing.
source§

fn index(&self, index: Idx<Macro2>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<MacroCall>> for ItemTree

§

type Output = MacroCall

The returned type after indexing.
source§

fn index(&self, index: Idx<MacroCall>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<MacroRules>> for ItemTree

§

type Output = MacroRules

The returned type after indexing.
source§

fn index(&self, index: Idx<MacroRules>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Mod>> for ItemTree

§

type Output = Mod

The returned type after indexing.
source§

fn index(&self, index: Idx<Mod>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Param>> for ItemTree

§

type Output = Param

The returned type after indexing.
source§

fn index(&self, index: Idx<Param>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Static>> for ItemTree

§

type Output = Static

The returned type after indexing.
source§

fn index(&self, index: Idx<Static>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Struct>> for ItemTree

§

type Output = Struct

The returned type after indexing.
source§

fn index(&self, index: Idx<Struct>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Trait>> for ItemTree

§

type Output = Trait

The returned type after indexing.
source§

fn index(&self, index: Idx<Trait>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<TraitAlias>> for ItemTree

§

type Output = TraitAlias

The returned type after indexing.
source§

fn index(&self, index: Idx<TraitAlias>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<TypeAlias>> for ItemTree

§

type Output = TypeAlias

The returned type after indexing.
source§

fn index(&self, index: Idx<TypeAlias>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Union>> for ItemTree

§

type Output = Union

The returned type after indexing.
source§

fn index(&self, index: Idx<Union>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Use>> for ItemTree

§

type Output = Use

The returned type after indexing.
source§

fn index(&self, index: Idx<Use>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Idx<Variant>> for ItemTree

§

type Output = Variant

The returned type after indexing.
source§

fn index(&self, index: Idx<Variant>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RawVisibilityId> for ItemTree

§

type Output = RawVisibility

The returned type after indexing.
source§

fn index(&self, index: RawVisibilityId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl PartialEq for ItemTree

source§

fn eq(&self, other: &ItemTree) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for ItemTree

source§

impl StructuralPartialEq for ItemTree

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoBox<dyn Any> for T
where T: Any,

§

fn into_box(self) -> Box<dyn Any>

Convert self into the appropriate boxed form.
§

impl<T> IntoBox<dyn Any + Send> for T
where T: Any + Send,

§

fn into_box(self) -> Box<dyn Any + Send>

Convert self into the appropriate boxed form.
§

impl<T> IntoBox<dyn Any + Send + Sync> for T
where T: Any + Send + Sync,

§

fn into_box(self) -> Box<dyn Any + Send + Sync>

Convert self into the appropriate boxed form.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more