#[repr(C)]pub struct ucs_callbackq_elem {
pub cb: ucs_callback_t,
pub arg: *mut c_void,
pub flags: c_uint,
pub id: c_int,
}Expand description
Callback queue element.
Fields§
§cb: ucs_callback_t< Callback function
arg: *mut c_void< Function argument
flags: c_uint< Callback flags
id: c_int< Callback id
Trait Implementations§
Source§impl Clone for ucs_callbackq_elem
impl Clone for ucs_callbackq_elem
Source§fn clone(&self) -> ucs_callbackq_elem
fn clone(&self) -> ucs_callbackq_elem
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 ucs_callbackq_elem
impl Debug for ucs_callbackq_elem
impl Copy for ucs_callbackq_elem
Auto Trait Implementations§
impl Freeze for ucs_callbackq_elem
impl RefUnwindSafe for ucs_callbackq_elem
impl !Send for ucs_callbackq_elem
impl !Sync for ucs_callbackq_elem
impl Unpin for ucs_callbackq_elem
impl UnwindSafe for ucs_callbackq_elem
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