Struct rustc_middle::ty::context::DeducedParamAttrs
source · pub struct DeducedParamAttrs {
pub read_only: bool,
}
Expand description
Parameter attributes that can only be determined by examining the body of a function instead of just its signature.
These can be useful for optimization purposes when a function is directly called. We compute them and store them into the crate metadata so that downstream crates can make use of them.
Right now, we only have read_only
, but no_capture
and no_alias
might be useful in the
future.
Fields§
§read_only: bool
The parameter is marked immutable in the function and contains no UnsafeCell
(i.e. its
type is freeze).
Trait Implementations§
source§impl Clone for DeducedParamAttrs
impl Clone for DeducedParamAttrs
source§fn clone(&self) -> DeducedParamAttrs
fn clone(&self) -> DeducedParamAttrs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeducedParamAttrs
impl Debug for DeducedParamAttrs
source§impl Default for DeducedParamAttrs
impl Default for DeducedParamAttrs
source§fn default() -> DeducedParamAttrs
fn default() -> DeducedParamAttrs
source§impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for DeducedParamAttrs
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for DeducedParamAttrs
fn hash_stable( &self, __hcx: &mut StableHashingContext<'__ctx>, __hasher: &mut StableHasher )
source§impl ParameterizedOverTcx for DeducedParamAttrs
impl ParameterizedOverTcx for DeducedParamAttrs
type Value<'tcx> = DeducedParamAttrs
source§impl PartialEq<DeducedParamAttrs> for DeducedParamAttrs
impl PartialEq<DeducedParamAttrs> for DeducedParamAttrs
source§fn eq(&self, other: &DeducedParamAttrs) -> bool
fn eq(&self, other: &DeducedParamAttrs) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl<'tcx, D: TyDecoder<I = TyCtxt<'tcx>>> RefDecodable<'tcx, D> for DeducedParamAttrs
impl<'tcx, D: TyDecoder<I = TyCtxt<'tcx>>> RefDecodable<'tcx, D> for DeducedParamAttrs
fn decode(decoder: &mut D) -> &'tcx Self
impl Copy for DeducedParamAttrs
impl StructuralPartialEq for DeducedParamAttrs
Auto Trait Implementations§
impl RefUnwindSafe for DeducedParamAttrs
impl Send for DeducedParamAttrs
impl Sync for DeducedParamAttrs
impl Unpin for DeducedParamAttrs
impl UnwindSafe for DeducedParamAttrs
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]
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, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<Tcx, T> DepNodeParams<Tcx> for Twhere
Tcx: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Tcx, T> DepNodeParams<Tcx> for Twhere Tcx: DepContext, T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
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<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<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> 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: &[QueryInfo], _guar: ErrorGuaranteed ) -> 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: 1 byte