Enum rustc_target::spec::LinkOutputKind [−][src]
pub enum LinkOutputKind {
DynamicNoPicExe,
DynamicPicExe,
StaticNoPicExe,
StaticPicExe,
DynamicDylib,
StaticDylib,
WasiReactorExe,
}
Expand description
Everything is flattened to a single enum to make the json encoding/decoding less annoying.
Variants
Dynamically linked non position-independent executable.
Dynamically linked position-independent executable.
Statically linked non position-independent executable.
Statically linked position-independent executable.
Regular dynamic library (“dynamically linked”).
Dynamic library with bundled libc (“statically linked”).
WASI module with a lifetime past the _initialize entry point
Implementations
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for LinkOutputKind
impl Send for LinkOutputKind
impl Sync for LinkOutputKind
impl Unpin for LinkOutputKind
impl UnwindSafe for LinkOutputKind
Blanket Implementations
Mutably borrows from an owned value. Read more
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: 1 byte
Size for each variant:
DynamicNoPicExe
: 0 bytesDynamicPicExe
: 0 bytesStaticNoPicExe
: 0 bytesStaticPicExe
: 0 bytesDynamicDylib
: 0 bytesStaticDylib
: 0 bytesWasiReactorExe
: 0 bytes