#[repr(C)]pub struct Patch {
pub addr: u32,
pub size: u32,
pub patch_bytes: *const c_void,
pub original_bytes: *const c_void,
pub enabled: bool,
}Fields§
§addr: u32§size: u32§patch_bytes: *const c_void§original_bytes: *const c_void§enabled: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Patch
impl RefUnwindSafe for Patch
impl !Send for Patch
impl !Sync for Patch
impl Unpin for Patch
impl UnsafeUnpin for Patch
impl UnwindSafe for Patch
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