pub struct PushBlobStreamChunkedResponse {
pub blob_url: String,
pub blob_digest: String,
pub size: u64,
}Expand description
The data returned by Client::push_blob_stream_chunked.
Fields§
§blob_url: StringPullable url for the uploaded blob.
blob_digest: StringComputed digest of the uploaded blob.
size: u64Total uploaded blob size in bytes.
Trait Implementations§
Source§impl Clone for PushBlobStreamChunkedResponse
impl Clone for PushBlobStreamChunkedResponse
Source§fn clone(&self) -> PushBlobStreamChunkedResponse
fn clone(&self) -> PushBlobStreamChunkedResponse
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 Eq for PushBlobStreamChunkedResponse
impl StructuralPartialEq for PushBlobStreamChunkedResponse
Auto Trait Implementations§
impl Freeze for PushBlobStreamChunkedResponse
impl RefUnwindSafe for PushBlobStreamChunkedResponse
impl Send for PushBlobStreamChunkedResponse
impl Sync for PushBlobStreamChunkedResponse
impl Unpin for PushBlobStreamChunkedResponse
impl UnsafeUnpin for PushBlobStreamChunkedResponse
impl UnwindSafe for PushBlobStreamChunkedResponse
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