[][src]Struct escargot::format::Target

pub struct Target<'a> {
    pub name: Cow<'a, str>,
    pub kind: Vec<Cow<'a, str>>,
    pub crate_types: Vec<Cow<'a, str>>,
    pub required_features: Vec<Cow<'a, str>>,
    pub src_path: Cow<'a, Path>,
    pub edition: Cow<'a, str>,
    // some fields omitted
}

A single target (lib, bin, example, ...) provided by a crate

Fields

name: Cow<'a, str>

Name as given in the Cargo.toml or generated from the file name

kind: Vec<Cow<'a, str>>

Kind of target ("bin", "example", "test", "bench", "lib")

crate_types: Vec<Cow<'a, str>>

Almost the same as kind, except when an example is a library instad of an executable. In that case crate_types contains things like rlib and dylib while kind is example

required_features: Vec<Cow<'a, str>>

This target is built only if these features are enabled. It doesn't apply to lib targets.

src_path: Cow<'a, Path>

Path to the main source file of the target

edition: Cow<'a, str>

Rust edition for this target

Trait Implementations

impl<'a> Clone for Target<'a>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Target<'a>[src]

impl<'a> Serialize for Target<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Target<'a>[src]

Auto Trait Implementations

impl<'a> Send for Target<'a>

impl<'a> Sync for Target<'a>

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]