Struct rustc_abi::ReprOptions
source · pub struct ReprOptions {
pub int: Option<IntegerType>,
pub align: Option<Align>,
pub pack: Option<Align>,
pub flags: ReprFlags,
pub field_shuffle_seed: Hash64,
}
Expand description
Represents the repr options provided by the user.
Fields§
§int: Option<IntegerType>
§align: Option<Align>
§pack: Option<Align>
§flags: ReprFlags
§field_shuffle_seed: Hash64
The seed to be used for randomizing a type’s layout
Note: This could technically be a Hash128
which would
be the “most accurate” hash as it’d encompass the item and crate
hash without loss, but it does pay the price of being larger.
Everything’s a tradeoff, a 64-bit seed should be sufficient for our
purposes (primarily -Z randomize-layout
)
Implementations§
source§impl ReprOptions
impl ReprOptions
pub fn simd(&self) -> bool
pub fn c(&self) -> bool
pub fn packed(&self) -> bool
pub fn transparent(&self) -> bool
pub fn linear(&self) -> bool
sourcepub fn discr_type(&self) -> IntegerType
pub fn discr_type(&self) -> IntegerType
Returns the discriminant type, given these repr
options.
This must only be called on enums!
sourcepub fn inhibit_enum_layout_opt(&self) -> bool
pub fn inhibit_enum_layout_opt(&self) -> bool
Returns true
if this #[repr()]
should inhabit “smart enum
layout” optimizations, such as representing Foo<&T>
as a
single pointer.
sourcepub fn inhibit_struct_field_reordering_opt(&self) -> bool
pub fn inhibit_struct_field_reordering_opt(&self) -> bool
Returns true
if this #[repr()]
should inhibit struct field reordering
optimizations, such as with repr(C)
, repr(packed(1))
, or repr(<int>)
.
sourcepub fn can_randomize_type_layout(&self) -> bool
pub fn can_randomize_type_layout(&self) -> bool
Returns true
if this type is valid for reordering and -Z randomize-layout
was enabled for its declaration crate.
sourcepub fn inhibit_union_abi_opt(&self) -> bool
pub fn inhibit_union_abi_opt(&self) -> bool
Returns true
if this #[repr()]
should inhibit union ABI optimisations.
Trait Implementations§
source§impl Clone for ReprOptions
impl Clone for ReprOptions
source§fn clone(&self) -> ReprOptions
fn clone(&self) -> ReprOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReprOptions
impl Debug for ReprOptions
source§impl<__D: Decoder> Decodable<__D> for ReprOptions
impl<__D: Decoder> Decodable<__D> for ReprOptions
source§impl Default for ReprOptions
impl Default for ReprOptions
source§fn default() -> ReprOptions
fn default() -> ReprOptions
source§impl<__E: Encoder> Encodable<__E> for ReprOptions
impl<__E: Encoder> Encodable<__E> for ReprOptions
source§impl<__CTX> HashStable<__CTX> for ReprOptionswhere
__CTX: HashStableContext,
impl<__CTX> HashStable<__CTX> for ReprOptionswhere __CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
source§impl PartialEq<ReprOptions> for ReprOptions
impl PartialEq<ReprOptions> for ReprOptions
source§fn eq(&self, other: &ReprOptions) -> bool
fn eq(&self, other: &ReprOptions) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for ReprOptions
impl Eq for ReprOptions
impl StructuralEq for ReprOptions
impl StructuralPartialEq for ReprOptions
Auto Trait Implementations§
impl RefUnwindSafe for ReprOptions
impl Send for ReprOptions
impl Sync for ReprOptions
impl Unpin for ReprOptions
impl UnwindSafe for ReprOptions
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
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: 16 bytes