pub enum ErrorKind {
Validation,
Expression,
Runtime,
Timeout,
Communication,
Authentication,
Authorization,
Configuration,
}Expand description
Error kind discriminator for WorkflowError
Variants§
Implementations§
Source§impl ErrorKind
impl ErrorKind
Sourcepub fn as_str(&self) -> &'static str
pub fn as_str(&self) -> &'static str
Returns the short type name (e.g., “validation”, “runtime”)
Sourcepub fn type_uri(&self) -> &'static str
pub fn type_uri(&self) -> &'static str
Returns the full error type URI per the Serverless Workflow spec
Sourcepub fn from_type_str(error_type: &str) -> Self
pub fn from_type_str(error_type: &str) -> Self
Resolves an error type string to an ErrorKind. Matches both the full URI (from ErrorTypes constants) and short names (suffix after last ‘/’). Returns ErrorKind::Runtime as the default for unknown types.
Trait Implementations§
impl Copy for ErrorKind
impl Eq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnsafeUnpin for ErrorKind
impl UnwindSafe for ErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.