pub struct RawErrorParameters {
pub timestamp: Datetime,
pub error: WorkerError,
pub retry_from: OplogIndex,
pub inside_atomic_region: bool,
pub retry_policy_state: Option<RetryPolicyState>,
}Fields§
§timestamp: Datetime§error: WorkerError§retry_from: OplogIndex§inside_atomic_region: bool§retry_policy_state: Option<RetryPolicyState>Persistent retry policy state, if a semantic retry policy is active.
Trait Implementations§
Source§impl Clone for RawErrorParameters
impl Clone for RawErrorParameters
Source§fn clone(&self) -> RawErrorParameters
fn clone(&self) -> RawErrorParameters
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 moreAuto Trait Implementations§
impl Freeze for RawErrorParameters
impl RefUnwindSafe for RawErrorParameters
impl Send for RawErrorParameters
impl Sync for RawErrorParameters
impl Unpin for RawErrorParameters
impl UnsafeUnpin for RawErrorParameters
impl UnwindSafe for RawErrorParameters
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