#[repr(C)]pub struct RAMBlockNotifier {
pub ram_block_added: Option<unsafe extern "C" fn(n: *mut RAMBlockNotifier, host: *mut c_void, size: size_t)>,
pub ram_block_removed: Option<unsafe extern "C" fn(n: *mut RAMBlockNotifier, host: *mut c_void, size: size_t)>,
pub next: RAMBlockNotifier__bindgen_ty_1,
}Fields§
§ram_block_added: Option<unsafe extern "C" fn(n: *mut RAMBlockNotifier, host: *mut c_void, size: size_t)>§ram_block_removed: Option<unsafe extern "C" fn(n: *mut RAMBlockNotifier, host: *mut c_void, size: size_t)>§next: RAMBlockNotifier__bindgen_ty_1Trait Implementations§
Source§impl Clone for RAMBlockNotifier
impl Clone for RAMBlockNotifier
Source§fn clone(&self) -> RAMBlockNotifier
fn clone(&self) -> RAMBlockNotifier
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RAMBlockNotifier
impl Debug for RAMBlockNotifier
impl Copy for RAMBlockNotifier
Auto Trait Implementations§
impl Freeze for RAMBlockNotifier
impl RefUnwindSafe for RAMBlockNotifier
impl !Send for RAMBlockNotifier
impl !Sync for RAMBlockNotifier
impl Unpin for RAMBlockNotifier
impl UnwindSafe for RAMBlockNotifier
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