[][src]Enum cargo_valgrind::Target

pub enum Target {
    Binary(PathBuf),
    Example(PathBuf),
    Benchmark(PathBuf),
    Test(PathBuf),
}

The possible targets to build and run within valgrind.

Variants

Binary(PathBuf)

A normal binary with the given name.

Example(PathBuf)

An example with the given name.

Benchmark(PathBuf)

A benchmark with the given name.

Test(PathBuf)

A test with the given name.

Methods

impl Target[src]

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

Query the path to the target binary.

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

Query the name of the target binary.

Panics

This method panics, if either the path has no file name, i.e. it is empty or the file name contains invalid UTF-8.

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

Query, if the target is an ordinary binary.

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

Query, if the target is an example binary.

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

Query, if the target is a benchmark binary.

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

Query, if the target is a test binary.

Trait Implementations

impl Clone for Target[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Target> for Target[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for Target[src]

impl Debug for Target[src]

impl Hash for Target[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Sync for Target

impl Send for Target

impl Unpin for Target

impl RefUnwindSafe for Target

impl UnwindSafe for Target

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]