pub enum AppErrorKind {
ActivityFailed,
OrchestrationFailed,
Cancelled {
reason: String,
},
}Expand description
Application error kinds.
Variants§
Trait Implementations§
Source§impl Clone for AppErrorKind
impl Clone for AppErrorKind
Source§fn clone(&self) -> AppErrorKind
fn clone(&self) -> AppErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AppErrorKind
impl Debug for AppErrorKind
Source§impl<'de> Deserialize<'de> for AppErrorKind
impl<'de> Deserialize<'de> for AppErrorKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AppErrorKind
impl PartialEq for AppErrorKind
Source§impl Serialize for AppErrorKind
impl Serialize for AppErrorKind
impl Eq for AppErrorKind
impl StructuralPartialEq for AppErrorKind
Auto Trait Implementations§
impl Freeze for AppErrorKind
impl RefUnwindSafe for AppErrorKind
impl Send for AppErrorKind
impl Sync for AppErrorKind
impl Unpin for AppErrorKind
impl UnwindSafe for AppErrorKind
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