#[repr(C)]pub struct AsyncEventCompletion {
pub flags: AsyncEventCompletionFlags,
pub status: u32,
pub aux: [u64; 7],
}
Expand description
The basic structure of an async event completion message.
Fields§
§flags: AsyncEventCompletionFlags
Flags about this completion. Reserved for future use.
status: u32
API-specific status code.
aux: [u64; 7]
API-specific data.
Implementations§
Trait Implementations§
source§impl Clone for AsyncEventCompletion
impl Clone for AsyncEventCompletion
source§fn clone(&self) -> AsyncEventCompletion
fn clone(&self) -> AsyncEventCompletion
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 AsyncEventCompletion
impl Debug for AsyncEventCompletion
source§impl Hash for AsyncEventCompletion
impl Hash for AsyncEventCompletion
source§impl Ord for AsyncEventCompletion
impl Ord for AsyncEventCompletion
source§fn cmp(&self, other: &AsyncEventCompletion) -> Ordering
fn cmp(&self, other: &AsyncEventCompletion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for AsyncEventCompletion
impl PartialEq for AsyncEventCompletion
source§impl PartialOrd for AsyncEventCompletion
impl PartialOrd for AsyncEventCompletion
impl Copy for AsyncEventCompletion
impl Eq for AsyncEventCompletion
impl StructuralPartialEq for AsyncEventCompletion
Auto Trait Implementations§
impl Freeze for AsyncEventCompletion
impl ObjSafe for AsyncEventCompletion
impl RefUnwindSafe for AsyncEventCompletion
impl Send for AsyncEventCompletion
impl Sync for AsyncEventCompletion
impl Unpin for AsyncEventCompletion
impl UnwindSafe for AsyncEventCompletion
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.