pub struct StaleLoopError {
pub loop_id: String,
pub source: Option<Box<dyn Error + Send + Sync>>,
}Expand description
Loop accepted reattach but failed the loop_get liveness probe.
Fields§
§loop_id: StringLoop id that failed the probe.
source: Option<Box<dyn Error + Send + Sync>>Underlying cause.
Implementations§
Trait Implementations§
Source§impl Debug for StaleLoopError
impl Debug for StaleLoopError
Source§impl Display for StaleLoopError
impl Display for StaleLoopError
Source§impl Error for StaleLoopError
impl Error for StaleLoopError
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()
Source§impl From<StaleLoopError> for Error
impl From<StaleLoopError> for Error
Source§fn from(source: StaleLoopError) -> Self
fn from(source: StaleLoopError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for StaleLoopError
impl !UnwindSafe for StaleLoopError
impl Freeze for StaleLoopError
impl Send for StaleLoopError
impl Sync for StaleLoopError
impl Unpin for StaleLoopError
impl UnsafeUnpin for StaleLoopError
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