pub enum IpcError {
Denied,
NoSuchChannel,
}Expand description
Errors from message routing.
Variants§
Denied
The sender’s capability does not authorize writing this channel.
NoSuchChannel
No such channel is registered.
Trait Implementations§
impl Eq for IpcError
impl StructuralPartialEq for IpcError
Auto Trait Implementations§
impl Freeze for IpcError
impl RefUnwindSafe for IpcError
impl Send for IpcError
impl Sync for IpcError
impl Unpin for IpcError
impl UnsafeUnpin for IpcError
impl UnwindSafe for IpcError
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