#[repr(C)]pub struct _panda_cb_list {
pub entry: panda_cb_with_context,
pub owner: *mut c_void,
pub next: *mut panda_cb_list,
pub prev: *mut panda_cb_list,
pub enabled: bool,
pub context: *mut c_void,
}Fields§
§entry: panda_cb_with_context§owner: *mut c_void§next: *mut panda_cb_list§prev: *mut panda_cb_list§enabled: bool§context: *mut c_voidTrait Implementations§
Source§impl Clone for _panda_cb_list
impl Clone for _panda_cb_list
Source§fn clone(&self) -> _panda_cb_list
fn clone(&self) -> _panda_cb_list
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 moreimpl Copy for _panda_cb_list
Auto Trait Implementations§
impl Freeze for _panda_cb_list
impl RefUnwindSafe for _panda_cb_list
impl !Send for _panda_cb_list
impl !Sync for _panda_cb_list
impl Unpin for _panda_cb_list
impl UnwindSafe for _panda_cb_list
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