pub struct Mmap {
pub code: bool,
pub data: bool,
pub ext: Option<UseBuildId>,
}
Expand description
Mmap
record options.
Fields§
§code: bool
Generate Mmap
record when mmap is executable (with PROT_EXEC
).
This also enables ExtraRecord::task
.
data: bool
Generate Mmap
record when mmap is non-executable (without PROT_EXEC
).
This also enables ExtraRecord::task
.
ext: Option<UseBuildId>
Enable extension fields.
This also enables Self::code
and ExtraRecord::task
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Mmap
impl RefUnwindSafe for Mmap
impl Send for Mmap
impl Sync for Mmap
impl Unpin for Mmap
impl UnwindSafe for Mmap
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