pub enum MacHandleError<E> {
Busy,
Inner(E),
}Expand description
Error returned when a MacHandle operation cannot access the shared coordinator.
Variants§
Busy
Another caller is already borrowing the shared coordinator.
Inner(E)
The underlying coordinator operation failed.
Trait Implementations§
Source§impl<E: Clone> Clone for MacHandleError<E>
impl<E: Clone> Clone for MacHandleError<E>
Source§fn clone(&self) -> MacHandleError<E>
fn clone(&self) -> MacHandleError<E>
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<E: Debug> Debug for MacHandleError<E>
impl<E: Debug> Debug for MacHandleError<E>
Source§impl<E: PartialEq> PartialEq for MacHandleError<E>
impl<E: PartialEq> PartialEq for MacHandleError<E>
impl<E: Copy> Copy for MacHandleError<E>
impl<E: Eq> Eq for MacHandleError<E>
impl<E> StructuralPartialEq for MacHandleError<E>
Auto Trait Implementations§
impl<E> Freeze for MacHandleError<E>where
E: Freeze,
impl<E> RefUnwindSafe for MacHandleError<E>where
E: RefUnwindSafe,
impl<E> Send for MacHandleError<E>where
E: Send,
impl<E> Sync for MacHandleError<E>where
E: Sync,
impl<E> Unpin for MacHandleError<E>where
E: Unpin,
impl<E> UnwindSafe for MacHandleError<E>where
E: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)