[]Struct symbolic::debuginfo::pdb::pdb::CrossModuleRef

pub struct CrossModuleRef<I>(pub ModuleRef, pub Local<I>)
where
    I: ItemIndex
;

Reference to a local type or id in another module.

See ItemIndex::is_cross_module for more information.

Trait Implementations

impl<I> Clone for CrossModuleRef<I> where
    I: ItemIndex + Clone

impl<I> Copy for CrossModuleRef<I> where
    I: ItemIndex + Copy

impl<I> Debug for CrossModuleRef<I> where
    I: ItemIndex + Debug

impl<I> Eq for CrossModuleRef<I> where
    I: ItemIndex + Eq

impl<I> Hash for CrossModuleRef<I> where
    I: ItemIndex + Hash

impl<I> PartialEq<CrossModuleRef<I>> for CrossModuleRef<I> where
    I: ItemIndex + PartialEq<I>, 

impl<I> StructuralEq for CrossModuleRef<I> where
    I: ItemIndex

impl<I> StructuralPartialEq for CrossModuleRef<I> where
    I: ItemIndex

Auto Trait Implementations

impl<I> RefUnwindSafe for CrossModuleRef<I> where
    I: RefUnwindSafe
[src]

impl<I> Send for CrossModuleRef<I> where
    I: Send
[src]

impl<I> Sync for CrossModuleRef<I> where
    I: Sync
[src]

impl<I> Unpin for CrossModuleRef<I> where
    I: Unpin
[src]

impl<I> UnwindSafe for CrossModuleRef<I> where
    I: UnwindSafe
[src]

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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.