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: u32The magic for this wrapper.
version: u32The version for this wrapper.
offset: u32The offset to the actual bitstream.
size: u32The size of the wrapped bitstream.
cpu_type: u32A 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