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 are_unstable_variants_set(&self) -> bool
fn are_unstable_variants_set(&self) -> bool
To help checking CLI usage while some of the values are unstable: returns whether one of the
components was set individually. 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
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
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<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> 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<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
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