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 !RefUnwindSafe for BlobResponse
impl !Sync for BlobResponse
impl !UnwindSafe for BlobResponse
impl Freeze for BlobResponse
impl Send for BlobResponse
impl Unpin for BlobResponse
impl UnsafeUnpin 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