#[non_exhaustive]pub enum WorkflowRunBuilderError {
MissingAuthenticator,
MissingApp,
MissingRegistry,
MissingRunStore,
MissingProvenance,
}Expand description
Why WorkflowRunRouterBuilder::build could not assemble a router.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MissingAuthenticator
WorkflowRunRouterBuilder::with_authenticator was not called.
MissingApp
WorkflowRunRouterBuilder::with_app was not called.
MissingRegistry
WorkflowRunRouterBuilder::with_registry was not called.
MissingRunStore
WorkflowRunRouterBuilder::with_run_store was not called.
MissingProvenance
WorkflowRunRouterBuilder::with_provenance was not called. Audit is
mandatory — the service refuses to run without a durable chain.
Trait Implementations§
Source§impl Debug for WorkflowRunBuilderError
impl Debug for WorkflowRunBuilderError
Source§impl Display for WorkflowRunBuilderError
impl Display for WorkflowRunBuilderError
Source§impl Error for WorkflowRunBuilderError
impl Error for WorkflowRunBuilderError
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 WorkflowRunBuilderError
impl RefUnwindSafe for WorkflowRunBuilderError
impl Send for WorkflowRunBuilderError
impl Sync for WorkflowRunBuilderError
impl Unpin for WorkflowRunBuilderError
impl UnsafeUnpin for WorkflowRunBuilderError
impl UnwindSafe for WorkflowRunBuilderError
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