Struct cranelift_codegen::binemit::CodeInfo
source · [−]pub struct CodeInfo {
pub total_size: CodeOffset,
}
Expand description
Container for information about a vector of compiled code and its supporting read-only data.
The code starts at offset 0 and is followed optionally by relocatable jump tables and copyable (raw binary) read-only data. Any padding between sections is always part of the section that precedes the boundary between the sections.
Fields
total_size: CodeOffset
Number of bytes in total.
Trait Implementations
impl StructuralPartialEq for CodeInfo
Auto Trait Implementations
impl RefUnwindSafe for CodeInfo
impl Send for CodeInfo
impl Sync for CodeInfo
impl Unpin for CodeInfo
impl UnwindSafe for CodeInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more