#[repr(C)]pub struct ucs_callbackq {
pub fast_elems: [ucs_callbackq_elem_t; 8],
pub priv_: [c_char; 72],
}Expand description
A queue of callback to execute
Fields§
§fast_elems: [ucs_callbackq_elem_t; 8]Array of fast-path element, the last is reserved as a sentinel to mark array end.
priv_: [c_char; 72]Private data, which we don’t want to expose in API to avoid pulling more header files
Trait Implementations§
Source§impl Clone for ucs_callbackq
impl Clone for ucs_callbackq
Source§fn clone(&self) -> ucs_callbackq
fn clone(&self) -> ucs_callbackq
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
impl Debug for ucs_callbackq
impl Copy for ucs_callbackq
Auto Trait Implementations§
impl Freeze for ucs_callbackq
impl RefUnwindSafe for ucs_callbackq
impl !Send for ucs_callbackq
impl !Sync for ucs_callbackq
impl Unpin for ucs_callbackq
impl UnwindSafe for ucs_callbackq
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