Struct rustc_target::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
)
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
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: 16 bytes