pub struct PutRetryReceipt {
pub committed_seq: ChangeSeq,
pub committed_fingerprint: String,
}Expand description
Receipt data needed to verify a PUT that reused a commit ID.
Fields§
§committed_seq: ChangeSeqSequence number assigned to the original commit.
committed_fingerprint: StringSemantic fingerprint stored in the original commit receipt.
Trait Implementations§
Source§impl Clone for PutRetryReceipt
impl Clone for PutRetryReceipt
Source§fn clone(&self) -> PutRetryReceipt
fn clone(&self) -> PutRetryReceipt
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 moreSource§impl Debug for PutRetryReceipt
impl Debug for PutRetryReceipt
impl Eq for PutRetryReceipt
Source§impl PartialEq for PutRetryReceipt
impl PartialEq for PutRetryReceipt
impl StructuralPartialEq for PutRetryReceipt
Auto Trait Implementations§
impl Freeze for PutRetryReceipt
impl RefUnwindSafe for PutRetryReceipt
impl Send for PutRetryReceipt
impl Sync for PutRetryReceipt
impl Unpin for PutRetryReceipt
impl UnsafeUnpin for PutRetryReceipt
impl UnwindSafe for PutRetryReceipt
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