#[non_exhaustive]pub struct CoordinationError {
pub kind: CoordinationErrorKind,
pub reason: String,
}Expand description
Error from a coordination backend.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.kind: CoordinationErrorKindHow the caller must react; see CoordinationErrorKind.
reason: StringHuman-readable cause.
Implementations§
Source§impl CoordinationError
impl CoordinationError
Sourcepub fn new(
kind: CoordinationErrorKind,
reason: impl Into<String>,
) -> CoordinationError
pub fn new( kind: CoordinationErrorKind, reason: impl Into<String>, ) -> CoordinationError
Build an error. Backends live outside this crate, so construction
goes through this constructor (the struct is #[non_exhaustive]).
Sourcepub fn class(&self) -> ErrorClass
pub fn class(&self) -> ErrorClass
Trait Implementations§
Source§impl Debug for CoordinationError
impl Debug for CoordinationError
Source§impl Display for CoordinationError
impl Display for CoordinationError
Source§impl Error for CoordinationError
impl Error for CoordinationError
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 CoordinationError
impl RefUnwindSafe for CoordinationError
impl Send for CoordinationError
impl Sync for CoordinationError
impl Unpin for CoordinationError
impl UnsafeUnpin for CoordinationError
impl UnwindSafe for CoordinationError
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