pub struct LinkSelfContained {
    pub explicitly_set: Option<bool>,
    enabled_components: LinkSelfContainedComponents,
    disabled_components: LinkSelfContainedComponents,
}Expand description
The different values -C link-self-contained can take: a list of individually enabled or
disabled components used during linking, coming from the rustc distribution, instead of being
found somewhere on the host system.
They can be set in bulk via -C link-self-contained=yes|y|on or -C link-self-contained=no|n|off, and those boolean values are the historical defaults.
But each component is fine-grained, and can be unstably targeted, to use:
- some CRT objects
- the libc static library
- libgcc/libunwind libraries
- a linker we distribute
- some sanitizer runtime libraries
- all other MinGW libraries and Windows import libs
Fields§
§explicitly_set: Option<bool>Whether the user explicitly set -C link-self-contained on or off, the historical values.
Used for compatibility with the existing opt-in and target inference.
enabled_components: LinkSelfContainedComponentsThe components that are enabled on the CLI, using the +component syntax or one of the
true shortcuts.
disabled_components: LinkSelfContainedComponentsThe components that are disabled on the CLI, using the -component syntax or one of the
false shortcuts.
Implementations§
Source§impl LinkSelfContained
 
impl LinkSelfContained
Sourcepub(crate) fn handle_cli_component(&mut self, component: &str) -> Option<()>
 
pub(crate) fn handle_cli_component(&mut self, component: &str) -> Option<()>
Incorporates an enabled or disabled component as specified on the CLI, if possible.
For example: +linker, and -crto.
Sourcepub(crate) fn set_all_explicitly(&mut self, enabled: bool)
 
pub(crate) fn set_all_explicitly(&mut self, enabled: bool)
Turns all components on or off and records that this was done explicitly for compatibility purposes.
Sourcefn check_unstable_variants(
    &self,
    target_tuple: &TargetTuple,
) -> Result<(), String>
 
fn check_unstable_variants( &self, target_tuple: &TargetTuple, ) -> Result<(), String>
To help checking CLI usage while some of the values are unstable: returns whether one of the
unstable components was set individually, for the given TargetTuple. This would also
require the -Zunstable-options flag, to be allowed.
Sourcepub fn is_linker_enabled(&self) -> bool
 
pub fn is_linker_enabled(&self) -> bool
Returns whether the self-contained linker component was enabled on the CLI, using the
-C link-self-contained=+linker syntax, or one of the true shortcuts.
Sourcepub fn is_linker_disabled(&self) -> bool
 
pub fn is_linker_disabled(&self) -> bool
Returns whether the self-contained linker component was disabled on the CLI, using the
-C link-self-contained=-linker syntax, or one of the false shortcuts.
Sourcefn check_consistency(&self) -> Option<LinkSelfContainedComponents>
 
fn check_consistency(&self) -> Option<LinkSelfContainedComponents>
Returns CLI inconsistencies to emit errors: individual components were both enabled and disabled.
Trait Implementations§
Source§impl Clone for LinkSelfContained
 
impl Clone for LinkSelfContained
Source§fn clone(&self) -> LinkSelfContained
 
fn clone(&self) -> LinkSelfContained
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for LinkSelfContained
 
impl Debug for LinkSelfContained
Source§impl Default for LinkSelfContained
 
impl Default for LinkSelfContained
Source§fn default() -> LinkSelfContained
 
fn default() -> LinkSelfContained
Source§impl PartialEq for LinkSelfContained
 
impl PartialEq for LinkSelfContained
impl StructuralPartialEq for LinkSelfContained
Auto Trait Implementations§
impl DynSend for LinkSelfContained
impl DynSync for LinkSelfContained
impl Freeze for LinkSelfContained
impl RefUnwindSafe for LinkSelfContained
impl Send for LinkSelfContained
impl Sync for LinkSelfContained
impl Unpin for LinkSelfContained
impl UnwindSafe for LinkSelfContained
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
 
impl<T> Pointable for T
Source§impl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
    T: 'static,
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: 3 bytes