pub enum OsIpcSelectionResult {
DataReceived(u64, IpcMessage),
ChannelClosed(u64),
}Variants§
DataReceived(u64, IpcMessage)
ChannelClosed(u64)
Implementations§
Source§impl OsIpcSelectionResult
impl OsIpcSelectionResult
pub fn unwrap(self) -> (u64, IpcMessage)
Auto Trait Implementations§
impl Freeze for OsIpcSelectionResult
impl RefUnwindSafe for OsIpcSelectionResult
impl Send for OsIpcSelectionResult
impl Sync for OsIpcSelectionResult
impl Unpin for OsIpcSelectionResult
impl UnsafeUnpin for OsIpcSelectionResult
impl UnwindSafe for OsIpcSelectionResult
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