#[repr(C)]pub struct ptr_tbl_ent {
pub next: *mut ptr_tbl_ent,
pub oldval: *const c_void,
pub newval: *mut c_void,
}
Fields§
§next: *mut ptr_tbl_ent
§oldval: *const c_void
§newval: *mut c_void
Trait Implementations§
Source§impl Clone for ptr_tbl_ent
impl Clone for ptr_tbl_ent
Source§fn clone(&self) -> ptr_tbl_ent
fn clone(&self) -> ptr_tbl_ent
Returns a copy 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 ptr_tbl_ent
impl Debug for ptr_tbl_ent
impl Copy for ptr_tbl_ent
Auto Trait Implementations§
impl Freeze for ptr_tbl_ent
impl RefUnwindSafe for ptr_tbl_ent
impl !Send for ptr_tbl_ent
impl !Sync for ptr_tbl_ent
impl Unpin for ptr_tbl_ent
impl UnwindSafe for ptr_tbl_ent
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