pub struct GetBlobOutput {
pub content: Bytes,
}Expand description
Represents the output of a get blob operation.
Fields§
§content: BytesThe content of the blob, usually a file.
Trait Implementations§
Source§impl Clone for GetBlobOutput
impl Clone for GetBlobOutput
Source§fn clone(&self) -> GetBlobOutput
fn clone(&self) -> GetBlobOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetBlobOutput
impl Debug for GetBlobOutput
Source§impl Default for GetBlobOutput
impl Default for GetBlobOutput
Source§fn default() -> GetBlobOutput
fn default() -> GetBlobOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBlobOutput
impl<'de> Deserialize<'de> for GetBlobOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetBlobOutput
impl PartialEq for GetBlobOutput
impl StructuralPartialEq for GetBlobOutput
Auto Trait Implementations§
impl !Freeze for GetBlobOutput
impl RefUnwindSafe for GetBlobOutput
impl Send for GetBlobOutput
impl Sync for GetBlobOutput
impl Unpin for GetBlobOutput
impl UnwindSafe for GetBlobOutput
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