pub struct WatchError<ST> {
pub responder: ST,
}
Expand description
Error returned if watch fails.
Fields§
§responder: ST
The responder that could not be parked.
Trait Implementations§
Source§impl<ST> Debug for WatchError<ST>
impl<ST> Debug for WatchError<ST>
Source§impl<ST> Display for WatchError<ST>
impl<ST> Display for WatchError<ST>
Source§impl<ST> Error for WatchError<ST>
impl<ST> Error for WatchError<ST>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<ST> Freeze for WatchError<ST>where
ST: Freeze,
impl<ST> RefUnwindSafe for WatchError<ST>where
ST: RefUnwindSafe,
impl<ST> Send for WatchError<ST>where
ST: Send,
impl<ST> Sync for WatchError<ST>where
ST: Sync,
impl<ST> Unpin for WatchError<ST>where
ST: Unpin,
impl<ST> UnwindSafe for WatchError<ST>where
ST: UnwindSafe,
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