ProviderError

Struct ProviderError 

Source
pub struct ProviderError {
    pub operation: String,
    pub message: String,
    pub retryable: bool,
}
Expand description

Provider-specific error with retry classification

Providers return this error type to indicate whether an error should be retried. The runtime uses is_retryable() to decide whether to retry the operation.

§Error Classification

Retryable (is_retryable = true):

  • Database busy/locked
  • Connection timeouts
  • Network failures
  • Temporary resource exhaustion

Non-retryable (is_retryable = false):

  • Data corruption (missing instance, invalid format)
  • Duplicate events (indicates bug)
  • Invalid input (malformed work item)
  • Configuration errors
  • Invalid lock tokens (idempotent - already processed)

§Example Usage

use duroxide::providers::ProviderError;

// Transient error - retryable
return Err(ProviderError::retryable("ack_orchestration_item", "Database is busy"));

// Permanent error - not retryable
return Err(ProviderError::permanent("ack_orchestration_item", "Duplicate event detected"));

Fields§

§operation: String

Operation that failed (e.g., “ack_orchestration_item”, “fetch_orchestration_item”)

§message: String

Human-readable error message

§retryable: bool

Whether this error should be retried

Implementations§

Source§

impl ProviderError

Source

pub fn retryable( operation: impl Into<String>, message: impl Into<String>, ) -> Self

Create a retryable (transient) error

Use for errors that might succeed on retry:

  • Database busy/locked
  • Connection timeouts
  • Network failures
Source

pub fn permanent( operation: impl Into<String>, message: impl Into<String>, ) -> Self

Create a non-retryable (permanent) error

Use for errors that won’t succeed on retry:

  • Data corruption
  • Duplicate events
  • Invalid input
  • Configuration errors
  • Invalid lock tokens (idempotent)
Source

pub fn is_retryable(&self) -> bool

Check if error is retryable

Source

pub fn to_infrastructure_error(&self) -> ErrorDetails

Convert to ErrorDetails::Infrastructure for runtime

Trait Implementations§

Source§

impl Clone for ProviderError

Source§

fn clone(&self) -> ProviderError

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ProviderError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ProviderError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ProviderError

1.30.0§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<&str> for ProviderError

Source§

fn from(s: &str) -> Self

Converts to this type from the input type.
Source§

impl From<ProviderError> for ClientError

Source§

fn from(e: ProviderError) -> Self

Converts to this type from the input type.
Source§

impl From<String> for ProviderError

Conversion from String for backward compatibility

Source§

fn from(s: String) -> Self

Convert String error to retryable ProviderError

This allows existing code that returns Err(String) to work. By default, String errors are treated as retryable (conservative approach).

Source§

impl PartialEq for ProviderError

Source§

fn eq(&self, other: &ProviderError) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for ProviderError

Source§

impl StructuralPartialEq for ProviderError

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> ToString for T
where T: Display + ?Sized,

§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more