pub struct RustNonTestBinarySummary {
pub name: String,
pub kind: RustNonTestBinaryKind,
pub path: Utf8PathBuf,
}
Expand description
A non-test Rust binary. Used to set the correct environment variables in reused builds.
Fields§
§name: String
The name of the binary.
kind: RustNonTestBinaryKind
The kind of binary this is.
path: Utf8PathBuf
The path to the binary, relative to the target directory.
Trait Implementations§
source§impl Clone for RustNonTestBinarySummary
impl Clone for RustNonTestBinarySummary
source§fn clone(&self) -> RustNonTestBinarySummary
fn clone(&self) -> RustNonTestBinarySummary
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 RustNonTestBinarySummary
impl Debug for RustNonTestBinarySummary
source§impl<'de> Deserialize<'de> for RustNonTestBinarySummary
impl<'de> Deserialize<'de> for RustNonTestBinarySummary
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 Ord for RustNonTestBinarySummary
impl Ord for RustNonTestBinarySummary
source§fn cmp(&self, other: &RustNonTestBinarySummary) -> Ordering
fn cmp(&self, other: &RustNonTestBinarySummary) -> 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<RustNonTestBinarySummary> for RustNonTestBinarySummary
impl PartialEq<RustNonTestBinarySummary> for RustNonTestBinarySummary
source§fn eq(&self, other: &RustNonTestBinarySummary) -> bool
fn eq(&self, other: &RustNonTestBinarySummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<RustNonTestBinarySummary> for RustNonTestBinarySummary
impl PartialOrd<RustNonTestBinarySummary> for RustNonTestBinarySummary
source§fn partial_cmp(&self, other: &RustNonTestBinarySummary) -> Option<Ordering>
fn partial_cmp(&self, other: &RustNonTestBinarySummary) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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