pub struct GetObject {
pub meta: ObjectMeta,
pub body: ByteStream,
}Expand description
The result of a streaming read: object metadata plus its byte stream.
Fields§
§meta: ObjectMetaMetadata for the object being read.
body: ByteStreamThe object’s body, streamed chunk by chunk.
Auto Trait Implementations§
impl !RefUnwindSafe for GetObject
impl !Sync for GetObject
impl !UnwindSafe for GetObject
impl Freeze for GetObject
impl Send for GetObject
impl Unpin for GetObject
impl UnsafeUnpin for GetObject
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