pub enum IPCBlockReason {
SendBlocked(u64),
RecvBlocked(u64),
ReplyBlocked,
NotificationBlocked(u64),
CallBlocked(u64),
}Expand description
IPC blocking reason
Corresponds to: Lion.IPCBlockReason
Variants§
SendBlocked(u64)
Blocked waiting to send on endpoint
RecvBlocked(u64)
Blocked waiting to receive from endpoint
ReplyBlocked
Blocked waiting for reply
NotificationBlocked(u64)
Blocked on notification
CallBlocked(u64)
Blocked on call (send + recv)
Trait Implementations§
Source§impl Clone for IPCBlockReason
impl Clone for IPCBlockReason
Source§fn clone(&self) -> IPCBlockReason
fn clone(&self) -> IPCBlockReason
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 moreSource§impl PartialEq for IPCBlockReason
impl PartialEq for IPCBlockReason
Source§fn eq(&self, other: &IPCBlockReason) -> bool
fn eq(&self, other: &IPCBlockReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IPCBlockReason
impl Eq for IPCBlockReason
impl StructuralPartialEq for IPCBlockReason
Auto Trait Implementations§
impl Freeze for IPCBlockReason
impl RefUnwindSafe for IPCBlockReason
impl Send for IPCBlockReason
impl Sync for IPCBlockReason
impl Unpin for IPCBlockReason
impl UnsafeUnpin for IPCBlockReason
impl UnwindSafe for IPCBlockReason
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