Struct guppy::graph::BuildTarget[][src]

pub struct BuildTarget<'g> { /* fields omitted */ }

A build target in a package.

A build target consists of one or more source files which can be compiled into a crate.

For more, see Cargo Targets in the Cargo reference.

Implementations

impl<'g> BuildTarget<'g>[src]

pub fn id(&self) -> BuildTargetId<'g>[src]

Returns the unique identifier for this build target.

pub fn name(&self) -> &'g str[src]

Returns the name of this build target.

pub fn kind(&self) -> BuildTargetKind<'g>[src]

Returns the kind of this build target.

pub fn required_features(&self) -> &'g [String]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Returns the features required for this build target.

This setting has no effect on the library target.

For more, see The required-features field in the Cargo reference.

pub fn path(&self) -> &'g Path[src]

Returns the absolute path of the location where the source for this build target is located.

pub fn edition(&self) -> &'g str[src]

Returns the Rust edition for this build target.

pub fn doc_tests(&self) -> bool[src]

Returns true if documentation tests are enabled for this build target.

Auto Trait Implementations

impl<'g> RefUnwindSafe for BuildTarget<'g>

impl<'g> Send for BuildTarget<'g>

impl<'g> Sync for BuildTarget<'g>

impl<'g> Unpin for BuildTarget<'g>

impl<'g> UnwindSafe for BuildTarget<'g>

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> Pointable for T

type Init = T

The type for initializers.

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,