pub enum ReactiveError {
WatchError(String),
StreamClosed,
ConnectionError(String),
ResourceNotFound(String),
}Expand description
Errors specific to reactive operations
Variants§
Trait Implementations§
Source§impl Debug for ReactiveError
impl Debug for ReactiveError
Source§impl Display for ReactiveError
impl Display for ReactiveError
Source§impl Error for ReactiveError
impl Error for ReactiveError
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 Freeze for ReactiveError
impl RefUnwindSafe for ReactiveError
impl Send for ReactiveError
impl Sync for ReactiveError
impl Unpin for ReactiveError
impl UnsafeUnpin for ReactiveError
impl UnwindSafe for ReactiveError
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