pub struct ToolchainSelection {
pub cc: ToolSelection,
pub cxx: ToolSelection,
pub ar: ToolSelection,
}Expand description
Aggregate of ToolSelections, one per ToolKind.
Fields§
§cc: ToolSelection§cxx: ToolSelection§ar: ToolSelectionImplementations§
Trait Implementations§
Source§impl Clone for ToolchainSelection
impl Clone for ToolchainSelection
Source§fn clone(&self) -> ToolchainSelection
fn clone(&self) -> ToolchainSelection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ToolchainSelection
impl Debug for ToolchainSelection
Source§impl Default for ToolchainSelection
impl Default for ToolchainSelection
Source§fn default() -> ToolchainSelection
fn default() -> ToolchainSelection
Returns the “default value” for a type. Read more
Source§impl PartialEq for ToolchainSelection
impl PartialEq for ToolchainSelection
Source§fn eq(&self, other: &ToolchainSelection) -> bool
fn eq(&self, other: &ToolchainSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ToolchainSelection
impl StructuralPartialEq for ToolchainSelection
Auto Trait Implementations§
impl Freeze for ToolchainSelection
impl RefUnwindSafe for ToolchainSelection
impl Send for ToolchainSelection
impl Sync for ToolchainSelection
impl Unpin for ToolchainSelection
impl UnsafeUnpin for ToolchainSelection
impl UnwindSafe for ToolchainSelection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.