[][src]Struct rustc_ap_rustc_span::def_id::LocalDefId

pub struct LocalDefId(_);

A LocalDefId is equivalent to a DefId with krate == LOCAL_CRATE. Since we encode this information in the type, we can ensure at compile time that no DefIds from upstream crates get thrown into the mix. There are quite a few cases where we know that only DefIds from the local crate are expected and a DefId from a different crate would signify a bug somewhere. This is when LocalDefId comes in handy.

Methods

impl LocalDefId[src]

pub fn from_def_id(def_id: DefId) -> LocalDefId[src]

pub fn to_def_id(self) -> DefId[src]

Trait Implementations

impl Clone for LocalDefId[src]

impl Copy for LocalDefId[src]

impl Debug for LocalDefId[src]

impl Eq for LocalDefId[src]

impl Hash for LocalDefId[src]

impl PartialEq<LocalDefId> for LocalDefId[src]

impl StructuralEq for LocalDefId[src]

impl StructuralPartialEq for LocalDefId[src]

impl UseSpecializedDecodable for LocalDefId[src]

impl UseSpecializedEncodable for LocalDefId[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

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

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<E> SpecializationError for E[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.