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