pub struct ToolchainDecl {
pub cc: Option<ToolSpec>,
pub cxx: Option<ToolSpec>,
pub ar: Option<ToolSpec>,
}Expand description
Manifest-shape declaration for tool selection.
Used by cabin-manifest to expose [toolchain] and
[target.'cfg(...)'.toolchain] parse output as typed values.
Every field is optional so omission means “no preference at
this layer”.
Fields§
§cc: Option<ToolSpec>§cxx: Option<ToolSpec>§ar: Option<ToolSpec>Implementations§
Trait Implementations§
Source§impl Clone for ToolchainDecl
impl Clone for ToolchainDecl
Source§fn clone(&self) -> ToolchainDecl
fn clone(&self) -> ToolchainDecl
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 ToolchainDecl
impl Debug for ToolchainDecl
Source§impl Default for ToolchainDecl
impl Default for ToolchainDecl
Source§fn default() -> ToolchainDecl
fn default() -> ToolchainDecl
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolchainDecl
impl<'de> Deserialize<'de> for ToolchainDecl
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 PartialEq for ToolchainDecl
impl PartialEq for ToolchainDecl
Source§fn eq(&self, other: &ToolchainDecl) -> bool
fn eq(&self, other: &ToolchainDecl) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolchainDecl
impl Serialize for ToolchainDecl
impl Eq for ToolchainDecl
impl StructuralPartialEq for ToolchainDecl
Auto Trait Implementations§
impl Freeze for ToolchainDecl
impl RefUnwindSafe for ToolchainDecl
impl Send for ToolchainDecl
impl Sync for ToolchainDecl
impl Unpin for ToolchainDecl
impl UnsafeUnpin for ToolchainDecl
impl UnwindSafe for ToolchainDecl
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.