Struct Target

Source
pub struct Target { /* private fields */ }
Expand description

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

Implementations§

Source§

impl Target

Source

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

Source

pub fn bin_target( name: &str, 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<LibKind>, 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 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 kind_mut(&mut self) -> &mut 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 benched(&self) -> bool

Source

pub fn doctested(&self) -> bool

Source

pub fn doctestable(&self) -> bool

Source

pub fn allows_underscores(&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 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<&str>

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

Source

pub fn can_lto(&self) -> bool

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_harness(&mut self, harness: bool) -> &mut Target

Source

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

Source

pub fn description_named(&self) -> String

Trait Implementations§

Source§

impl Clone for Target

Source§

fn clone(&self) -> Target

Returns a duplicate 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,

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

impl PartialEq for Target

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

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

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

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

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
Source§

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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§

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>,

Source§

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>,

Source§

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.
Source§

impl<T> ErasedDestructor for T
where T: 'static,