pub struct CodegenFnAttrs {Show 14 fields
pub flags: CodegenFnAttrFlags,
pub inline: InlineAttr,
pub optimize: OptimizeAttr,
pub export_name: Option<Symbol>,
pub link_name: Option<Symbol>,
pub link_ordinal: Option<u16>,
pub target_features: Vec<TargetFeature>,
pub linkage: Option<Linkage>,
pub import_linkage: Option<Linkage>,
pub link_section: Option<Symbol>,
pub no_sanitize: SanitizerSet,
pub instruction_set: Option<InstructionSetAttr>,
pub alignment: Option<Align>,
pub patchable_function_entry: Option<PatchableFunctionEntry>,
}
Fields§
§flags: CodegenFnAttrFlags
§inline: InlineAttr
Parsed representation of the #[inline]
attribute
optimize: OptimizeAttr
Parsed representation of the #[optimize]
attribute
export_name: Option<Symbol>
The #[export_name = "..."]
attribute, indicating a custom symbol a
function should be exported under
link_name: Option<Symbol>
The #[link_name = "..."]
attribute, indicating a custom symbol an
imported function should be imported as. Note that export_name
probably isn’t set when this is set, this is for foreign items while
#[export_name]
is for Rust-defined functions.
link_ordinal: Option<u16>
The #[link_ordinal = "..."]
attribute, indicating an ordinal an
imported function has in the dynamic library. Note that this must not
be set when link_name
is set. This is for foreign items with the
“raw-dylib” kind.
target_features: Vec<TargetFeature>
The #[target_feature(enable = "...")]
attribute and the enabled
features (only enabled features are supported right now).
linkage: Option<Linkage>
The #[linkage = "..."]
attribute on Rust-defined items and the value we found.
import_linkage: Option<Linkage>
The #[linkage = "..."]
attribute on foreign items and the value we found.
link_section: Option<Symbol>
The #[link_section = "..."]
attribute, or what executable section this
should be placed in.
no_sanitize: SanitizerSet
The #[no_sanitize(...)]
attribute. Indicates sanitizers for which
instrumentation should be disabled inside the annotated function.
instruction_set: Option<InstructionSetAttr>
The #[instruction_set(set)]
attribute. Indicates if the generated code should
be generated against a specific instruction set. Only usable on architectures which allow
switching between multiple instruction sets.
alignment: Option<Align>
The #[repr(align(...))]
attribute. Indicates the value of which the function should be
aligned to.
patchable_function_entry: Option<PatchableFunctionEntry>
The #[patchable_function_entry(...)]
attribute. Indicates how many nops should be around
the function entry.
Implementations§
source§impl CodegenFnAttrs
impl CodegenFnAttrs
pub const EMPTY: &'static Self = _
pub const fn new() -> CodegenFnAttrs
sourcepub fn contains_extern_indicator(&self) -> bool
pub fn contains_extern_indicator(&self) -> bool
Returns true
if it looks like this symbol needs to be exported, for example:
#[no_mangle]
is present#[export_name(...)]
is present#[linkage]
is present
Trait Implementations§
source§impl Clone for CodegenFnAttrs
impl Clone for CodegenFnAttrs
source§fn clone(&self) -> CodegenFnAttrs
fn clone(&self) -> CodegenFnAttrs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CodegenFnAttrs
impl Debug for CodegenFnAttrs
source§impl<__D: TyDecoder> Decodable<__D> for CodegenFnAttrs
impl<__D: TyDecoder> Decodable<__D> for CodegenFnAttrs
source§impl<__E: TyEncoder> Encodable<__E> for CodegenFnAttrs
impl<__E: TyEncoder> Encodable<__E> for CodegenFnAttrs
source§impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for CodegenFnAttrs
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for CodegenFnAttrs
fn hash_stable( &self, __hcx: &mut StableHashingContext<'__ctx>, __hasher: &mut StableHasher, )
source§impl ParameterizedOverTcx for CodegenFnAttrs
impl ParameterizedOverTcx for CodegenFnAttrs
type Value<'tcx> = CodegenFnAttrs
Auto Trait Implementations§
impl Freeze for CodegenFnAttrs
impl RefUnwindSafe for CodegenFnAttrs
impl Send for CodegenFnAttrs
impl Sync for CodegenFnAttrs
impl Unpin for CodegenFnAttrs
impl UnwindSafe for CodegenFnAttrs
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<Tcx, T> DepNodeParams<Tcx> for T
impl<Tcx, T> DepNodeParams<Tcx> for T
default fn fingerprint_style() -> FingerprintStyle
source§default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_debug_str(&self, _: Tcx) -> String
source§default fn recover(_: Tcx, _: &DepNode) -> Option<T>
default fn recover(_: Tcx, _: &DepNode) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it.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<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> 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<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> 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: 56 bytes