pub struct RootSettings {
pub profiles: BTreeMap<ProfileName, ProfileDefinition>,
pub toolchain: ToolchainSettings,
pub compiler_wrapper: CompilerWrapperManifestSettings,
pub patches: PatchManifestSettings,
}Expand description
Root-manifest policy settings that apply workspace-wide even
when the entry manifest is a pure [workspace] manifest.
Fields§
§profiles: BTreeMap<ProfileName, ProfileDefinition>§toolchain: ToolchainSettings§compiler_wrapper: CompilerWrapperManifestSettings§patches: PatchManifestSettingsTrait Implementations§
Source§impl Clone for RootSettings
impl Clone for RootSettings
Source§fn clone(&self) -> RootSettings
fn clone(&self) -> RootSettings
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 RootSettings
impl Debug for RootSettings
Source§impl Default for RootSettings
impl Default for RootSettings
Source§fn default() -> RootSettings
fn default() -> RootSettings
Returns the “default value” for a type. Read more
Source§impl From<RootSettings> for RootSettings
impl From<RootSettings> for RootSettings
Source§fn from(value: RootSettings) -> Self
fn from(value: RootSettings) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RootSettings
impl PartialEq for RootSettings
Source§fn eq(&self, other: &RootSettings) -> bool
fn eq(&self, other: &RootSettings) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RootSettings
impl StructuralPartialEq for RootSettings
Auto Trait Implementations§
impl Freeze for RootSettings
impl RefUnwindSafe for RootSettings
impl Send for RootSettings
impl Sync for RootSettings
impl Unpin for RootSettings
impl UnsafeUnpin for RootSettings
impl UnwindSafe for RootSettings
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.