Struct cargo::core::manifest::Target

source ·
pub struct Target {
    inner: Arc<TargetInner>,
}
Expand description

Information about a binary, a library, an example, etc. that is part of the package.

Fields§

§inner: Arc<TargetInner>

Implementations§

source§

impl Target

source

fn new(src_path: TargetSourcePath, edition: Edition) -> Target

source

fn with_path(src_path: PathBuf, edition: Edition) -> Target

source

pub fn lib_target( name: &str, crate_targets: Vec<CrateType>, src_path: PathBuf, edition: Edition ) -> Target

source

pub fn bin_target( name: &str, bin_name: Option<String>, src_path: PathBuf, required_features: Option<Vec<String>>, edition: Edition ) -> Target

source

pub fn custom_build_target( name: &str, src_path: PathBuf, edition: Edition ) -> Target

Builds a Target corresponding to the build = "build.rs" entry.

source

pub fn metabuild_target(name: &str) -> Target

source

pub fn example_target( name: &str, crate_targets: Vec<CrateType>, src_path: PathBuf, required_features: Option<Vec<String>>, edition: Edition ) -> Target

source

pub fn test_target( name: &str, src_path: PathBuf, required_features: Option<Vec<String>>, edition: Edition ) -> Target

source

pub fn bench_target( name: &str, src_path: PathBuf, required_features: Option<Vec<String>>, edition: Edition ) -> Target

source

pub fn name(&self) -> &str

source

pub fn name_inferred(&self) -> bool

source

pub fn crate_name(&self) -> String

source

pub fn src_path(&self) -> &TargetSourcePath

source

pub fn set_src_path(&mut self, src_path: TargetSourcePath)

source

pub fn required_features(&self) -> Option<&Vec<String>>

source

pub fn kind(&self) -> &TargetKind

source

pub fn tested(&self) -> bool

source

pub fn harness(&self) -> bool

source

pub fn documented(&self) -> bool

source

pub fn for_host(&self) -> bool

source

pub fn proc_macro(&self) -> bool

source

pub fn edition(&self) -> Edition

source

pub fn doc_scrape_examples(&self) -> RustdocScrapeExamples

source

pub fn benched(&self) -> bool

source

pub fn doctested(&self) -> bool

source

pub fn doctestable(&self) -> bool

source

pub fn is_lib(&self) -> bool

source

pub fn is_dylib(&self) -> bool

source

pub fn is_cdylib(&self) -> bool

source

pub fn is_staticlib(&self) -> bool

source

pub fn is_linkable(&self) -> bool

Returns whether this target produces an artifact which can be linked into a Rust crate.

This only returns true for certain kinds of libraries.

source

pub fn is_bin(&self) -> bool

source

pub fn is_example(&self) -> bool

source

pub fn is_executable(&self) -> bool

Returns true if it is a binary or executable example. NOTE: Tests are false!

source

pub fn is_exe_example(&self) -> bool

Returns true if it is an executable example.

source

pub fn is_test(&self) -> bool

source

pub fn is_bench(&self) -> bool

source

pub fn is_custom_build(&self) -> bool

source

pub fn rustc_crate_types(&self) -> Vec<CrateType>

Returns the arguments suitable for --crate-type to pass to rustc.

source

pub fn set_tested(&mut self, tested: bool) -> &mut Target

source

pub fn set_benched(&mut self, benched: bool) -> &mut Target

source

pub fn set_doctest(&mut self, doctest: bool) -> &mut Target

source

pub fn set_for_host(&mut self, for_host: bool) -> &mut Target

source

pub fn set_proc_macro(&mut self, proc_macro: bool) -> &mut Target

source

pub fn set_edition(&mut self, edition: Edition) -> &mut Target

source

pub fn set_doc_scrape_examples( &mut self, doc_scrape_examples: RustdocScrapeExamples ) -> &mut Target

source

pub fn set_harness(&mut self, harness: bool) -> &mut Target

source

pub fn set_doc(&mut self, doc: bool) -> &mut Target

source

pub fn set_kind(&mut self, kind: TargetKind) -> &mut Target

source

pub fn set_name(&mut self, name: &str) -> &mut Target

source

pub fn set_name_inferred(&mut self, inferred: bool) -> &mut Target

source

pub fn set_binary_name(&mut self, bin_name: Option<String>) -> &mut Target

source

pub fn set_required_features( &mut self, required_features: Option<Vec<String>> ) -> &mut Target

source

pub fn binary_filename(&self) -> Option<String>

source

pub fn description_named(&self) -> String

Trait Implementations§

source§

impl Clone for Target

source§

fn clone(&self) -> Target

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Target

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Target

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for Target

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Target

source§

fn cmp(&self, other: &Target) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Target

source§

fn eq(&self, other: &Target) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Target

source§

fn partial_cmp(&self, other: &Target) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for Target

source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Target

source§

impl StructuralPartialEq for Target

Auto Trait Implementations§

§

impl Freeze for Target

§

impl RefUnwindSafe for Target

§

impl Send for Target

§

impl Sync for Target

§

impl Unpin for Target

§

impl UnwindSafe for Target

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

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

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

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

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 8 bytes