#[non_exhaustive]pub enum TargetKind {
Bench,
Bin,
CustomBuild,
CDyLib,
DyLib,
Example,
Lib,
ProcMacro,
RLib,
StaticLib,
Test,
Unknown(String),
}
Expand description
Kind of target.
The possible values are example
, test
, bench
, custom-build
and
Cargo crate types:
bin
, lib
, rlib
, dylib
, cdylib
, staticlib
, proc-macro
.
Other possible values may be added in the future.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Bench
cargo bench
target
Bin
Binary executable target
CustomBuild
Custom build target
CDyLib
Dynamic system library target
DyLib
Dynamic Rust library target
Example
Example target
Lib
Rust library
ProcMacro
Procedural Macro
RLib
Rust library for use as an intermediate artifact
StaticLib
Static system library
Test
Test target
Unknown(String)
Unknown type
Trait Implementations§
Source§impl Clone for TargetKind
impl Clone for TargetKind
Source§fn clone(&self) -> TargetKind
fn clone(&self) -> TargetKind
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TargetKind
impl Debug for TargetKind
Source§impl<'de> Deserialize<'de> for TargetKind
impl<'de> Deserialize<'de> for TargetKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&str> for TargetKind
impl From<&str> for TargetKind
Source§impl Hash for TargetKind
impl Hash for TargetKind
Source§impl Ord for TargetKind
impl Ord for TargetKind
Source§fn cmp(&self, other: &TargetKind) -> Ordering
fn cmp(&self, other: &TargetKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TargetKind
impl PartialEq for TargetKind
Source§impl PartialOrd for TargetKind
impl PartialOrd for TargetKind
Source§impl Serialize for TargetKind
impl Serialize for TargetKind
impl Eq for TargetKind
impl StructuralPartialEq for TargetKind
Auto Trait Implementations§
impl Freeze for TargetKind
impl RefUnwindSafe for TargetKind
impl Send for TargetKind
impl Sync for TargetKind
impl Unpin for TargetKind
impl UnwindSafe for TargetKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more