pub enum WorkflowPreflightError {
UnsupportedSchema {
field: &'static str,
schema: String,
},
InvalidPlan(String),
}Variants§
Trait Implementations§
Source§impl Debug for WorkflowPreflightError
impl Debug for WorkflowPreflightError
Source§impl Display for WorkflowPreflightError
impl Display for WorkflowPreflightError
impl Eq for WorkflowPreflightError
Source§impl Error for WorkflowPreflightError
impl Error for WorkflowPreflightError
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()
Source§impl PartialEq for WorkflowPreflightError
impl PartialEq for WorkflowPreflightError
impl StructuralPartialEq for WorkflowPreflightError
Auto Trait Implementations§
impl Freeze for WorkflowPreflightError
impl RefUnwindSafe for WorkflowPreflightError
impl Send for WorkflowPreflightError
impl Sync for WorkflowPreflightError
impl Unpin for WorkflowPreflightError
impl UnsafeUnpin for WorkflowPreflightError
impl UnwindSafe for WorkflowPreflightError
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