[][src]Struct rustc_ap_rustc_session::config::ExternEntry

pub struct ExternEntry {
    pub location: ExternLocation,
    pub is_private_dep: bool,
    pub add_prelude: bool,
}

Fields

location: ExternLocationis_private_dep: bool

Indicates this is a "private" dependency for the exported_private_dependencies lint.

This can be set with the priv option like --extern priv:name=foo.rlib.

add_prelude: bool

Add the extern entry to the extern prelude.

This can be disabled with the noprelude option like --extern noprelude:name.

Methods

impl ExternEntry[src]

pub fn files(&self) -> Option<impl Iterator<Item = &String>>[src]

Trait Implementations

impl Clone for ExternEntry[src]

impl Debug for ExternEntry[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> 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.