pub struct BlobUpload {
pub digest: CacheDigest,
pub source: BlobSource,
}Expand description
A digest paired with the data to upload under that digest.
Fields§
§digest: CacheDigestExpected digest and length of the source data.
source: BlobSourceData source read by RemoteCacheClient::put_blob.
Auto Trait Implementations§
impl Freeze for BlobUpload
impl RefUnwindSafe for BlobUpload
impl Send for BlobUpload
impl Sync for BlobUpload
impl Unpin for BlobUpload
impl UnsafeUnpin for BlobUpload
impl UnwindSafe for BlobUpload
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