pub struct BitcodeWrapper {
pub magic: u32,
pub version: u32,
pub offset: u32,
pub size: u32,
pub cpu_type: u32,
}
Expand description
A representation of the wrapper structure for a bitstream.
Fields§
§magic: u32
The magic for this wrapper.
version: u32
The version for this wrapper.
offset: u32
The offset to the actual bitstream.
size: u32
The size of the wrapped bitstream.
cpu_type: u32
A target-specific value that encodes the CPU type.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BitcodeWrapper
impl RefUnwindSafe for BitcodeWrapper
impl Send for BitcodeWrapper
impl Sync for BitcodeWrapper
impl Unpin for BitcodeWrapper
impl UnwindSafe for BitcodeWrapper
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