Enum bootstrap::DependencyType
source · pub enum DependencyType {
Host,
Target,
TargetSelfContained,
}
Expand description
When building Rust various objects are handled differently.
Variants§
Host
Libraries originating from proc-macros.
Target
Typical Rust libraries.
TargetSelfContained
Non Rust libraries and objects shipped to ease usage of certain targets.
Trait Implementations§
source§impl Clone for DependencyType
impl Clone for DependencyType
source§fn clone(&self) -> DependencyType
fn clone(&self) -> DependencyType
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 DependencyType
impl Debug for DependencyType
source§impl Ord for DependencyType
impl Ord for DependencyType
source§fn cmp(&self, other: &DependencyType) -> Ordering
fn cmp(&self, other: &DependencyType) -> 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<DependencyType> for DependencyType
impl PartialEq<DependencyType> for DependencyType
source§fn eq(&self, other: &DependencyType) -> bool
fn eq(&self, other: &DependencyType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DependencyType> for DependencyType
impl PartialOrd<DependencyType> for DependencyType
source§fn partial_cmp(&self, other: &DependencyType) -> Option<Ordering>
fn partial_cmp(&self, other: &DependencyType) -> 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 moreimpl Copy for DependencyType
impl Eq for DependencyType
impl StructuralEq for DependencyType
impl StructuralPartialEq for DependencyType
Auto Trait Implementations§
impl RefUnwindSafe for DependencyType
impl Send for DependencyType
impl Sync for DependencyType
impl Unpin for DependencyType
impl UnwindSafe for DependencyType
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
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: 1 byte
Size for each variant:
Host
: 0 bytesTarget
: 0 bytesTargetSelfContained
: 0 bytes