#[repr(u32)]pub enum NemoRelayNativeAsyncCallbackState {
Complete = 0,
Pending = 1,
}Expand description
Indicates whether an asynchronous native callback settled before returning.
Variants§
Complete = 0
The callback settled its completion before returning.
Pending = 1
The callback retained its completion for later settlement.
Trait Implementations§
Source§impl Clone for NemoRelayNativeAsyncCallbackState
impl Clone for NemoRelayNativeAsyncCallbackState
Source§fn clone(&self) -> NemoRelayNativeAsyncCallbackState
fn clone(&self) -> NemoRelayNativeAsyncCallbackState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NemoRelayNativeAsyncCallbackState
impl Eq for NemoRelayNativeAsyncCallbackState
impl StructuralPartialEq for NemoRelayNativeAsyncCallbackState
Auto Trait Implementations§
impl Freeze for NemoRelayNativeAsyncCallbackState
impl RefUnwindSafe for NemoRelayNativeAsyncCallbackState
impl Send for NemoRelayNativeAsyncCallbackState
impl Sync for NemoRelayNativeAsyncCallbackState
impl Unpin for NemoRelayNativeAsyncCallbackState
impl UnsafeUnpin for NemoRelayNativeAsyncCallbackState
impl UnwindSafe for NemoRelayNativeAsyncCallbackState
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