pub struct UpdateRetryStatus {
pub id: i64,
pub retry_count: i64,
pub max_attempts: u32,
pub backoff_base_secs: u64,
}Expand description
Parameters for updating a trigger’s retry status.
Fields§
§id: i64The unique identifier of the trigger.
retry_count: i64The current retry count of the trigger.
max_attempts: u32The maximum number of attempts allowed.
backoff_base_secs: u64The base backoff duration in seconds.
Trait Implementations§
Source§impl Clone for UpdateRetryStatus
impl Clone for UpdateRetryStatus
Source§fn clone(&self) -> UpdateRetryStatus
fn clone(&self) -> UpdateRetryStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateRetryStatus
impl RefUnwindSafe for UpdateRetryStatus
impl Send for UpdateRetryStatus
impl Sync for UpdateRetryStatus
impl Unpin for UpdateRetryStatus
impl UnsafeUnpin for UpdateRetryStatus
impl UnwindSafe for UpdateRetryStatus
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more