Type Alias StaticLoc

Source
pub type StaticLoc = AssocItemLoc<Static>;

Aliased Type§

struct StaticLoc {
    pub container: ItemContainerId,
    pub id: ItemTreeId<Static>,
}

Fields§

§container: ItemContainerId§id: ItemTreeId<Static>

Trait Implementations§

Source§

impl Intern for StaticLoc

Source§

type Database = dyn DefDatabase

Source§

type ID = StaticId

Source§

fn intern(self, db: &Self::Database) -> Self::ID

Source§

impl ItemTreeLoc for StaticLoc

Source§

impl<N: ItemTreeNode> Clone for AssocItemLoc<N>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<N: Debug + ItemTreeNode> Debug for AssocItemLoc<N>

Source§

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

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

impl<N: ItemTreeNode> Hash for AssocItemLoc<N>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<N: ItemTreeNode> PartialEq for AssocItemLoc<N>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<N: ItemTreeNode> Copy for AssocItemLoc<N>

Source§

impl<N: ItemTreeNode> Eq for AssocItemLoc<N>