pub struct PutRetryAttempt<'a> {
pub namespace_id: &'a NamespaceId,
pub path: &'a AbsolutePath,
pub commit_id: &'a CommitId,
pub options: &'a PutFileOptions,
pub staged: ContentEvidence<'a>,
}Expand description
Details of the retried PUT being compared with an existing receipt.
Fields§
§namespace_id: &'a NamespaceIdNamespace targeted by the PUT.
path: &'a AbsolutePathAbsolute path targeted by the PUT.
commit_id: &'a CommitIdCommit ID that was already used.
options: &'a PutFileOptionsPUT options supplied by the caller.
staged: ContentEvidence<'a>Checksum or byte evidence for the new upload.
Trait Implementations§
Source§impl<'a> Clone for PutRetryAttempt<'a>
impl<'a> Clone for PutRetryAttempt<'a>
Source§fn clone(&self) -> PutRetryAttempt<'a>
fn clone(&self) -> PutRetryAttempt<'a>
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 moreimpl<'a> Copy for PutRetryAttempt<'a>
Auto Trait Implementations§
impl<'a> Freeze for PutRetryAttempt<'a>
impl<'a> RefUnwindSafe for PutRetryAttempt<'a>
impl<'a> Send for PutRetryAttempt<'a>
impl<'a> Sync for PutRetryAttempt<'a>
impl<'a> Unpin for PutRetryAttempt<'a>
impl<'a> UnsafeUnpin for PutRetryAttempt<'a>
impl<'a> UnwindSafe for PutRetryAttempt<'a>
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