Enum oci_client::client::BlobResponse
source · pub enum BlobResponse {
Full(SizedStream),
Partial(SizedStream),
}
Expand description
The response of a partial blob request
Variants§
Full(SizedStream)
The response is a full blob (for example when partial requests aren’t supported)
Partial(SizedStream)
The response is a partial blob as requested
Auto Trait Implementations§
impl Freeze for BlobResponse
impl !RefUnwindSafe for BlobResponse
impl Send for BlobResponse
impl !Sync for BlobResponse
impl Unpin for BlobResponse
impl !UnwindSafe for BlobResponse
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