pub enum SubscriptionError {
NotFound(usize),
PreservationFailed(String),
ReestablishmentFailed(String),
}
Expand description
Errors related to subscription management
Variants§
NotFound(usize)
The subscription with the given ID was not found
PreservationFailed(String)
Failed to preserve subscription state with the given error message
ReestablishmentFailed(String)
Failed to reestablish subscription with the given error message
Trait Implementations§
Source§impl Debug for SubscriptionError
impl Debug for SubscriptionError
Source§impl Display for SubscriptionError
impl Display for SubscriptionError
Source§impl Error for SubscriptionError
impl Error for SubscriptionError
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 SubscriptionError
impl RefUnwindSafe for SubscriptionError
impl Send for SubscriptionError
impl Sync for SubscriptionError
impl Unpin for SubscriptionError
impl UnwindSafe for SubscriptionError
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