pub enum IdempotencyBeginResult {
New,
Existing {
state: IdempotencyState,
},
InProgress,
}Variants§
Trait Implementations§
Source§impl Clone for IdempotencyBeginResult
impl Clone for IdempotencyBeginResult
Source§fn clone(&self) -> IdempotencyBeginResult
fn clone(&self) -> IdempotencyBeginResult
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 moreSource§impl Debug for IdempotencyBeginResult
impl Debug for IdempotencyBeginResult
Source§impl PartialEq for IdempotencyBeginResult
impl PartialEq for IdempotencyBeginResult
impl StructuralPartialEq for IdempotencyBeginResult
Auto Trait Implementations§
impl Freeze for IdempotencyBeginResult
impl RefUnwindSafe for IdempotencyBeginResult
impl Send for IdempotencyBeginResult
impl Sync for IdempotencyBeginResult
impl Unpin for IdempotencyBeginResult
impl UnwindSafe for IdempotencyBeginResult
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