Struct mariadb_sys::list_node
source · #[repr(C)]pub struct list_node {
pub next: *mut list_node,
pub info: *mut c_void,
}
Expand description
list_node - a node of a single-linked list. @note We never call a destructor for instances of this class.
Fields§
§next: *mut list_node
§info: *mut c_void
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for list_node
impl !Send for list_node
impl !Sync for list_node
impl Unpin for list_node
impl UnwindSafe for list_node
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