pub struct BlobObject {
pub bytes: Vec<u8>,
pub content_type: String,
}Expand description
A stored object: its bytes and the content type to serve it with.
Fields§
§bytes: Vec<u8>§content_type: StringTrait Implementations§
Source§impl Clone for BlobObject
impl Clone for BlobObject
Source§fn clone(&self) -> BlobObject
fn clone(&self) -> BlobObject
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 moreSource§impl Debug for BlobObject
impl Debug for BlobObject
impl Eq for BlobObject
Source§impl PartialEq for BlobObject
impl PartialEq for BlobObject
impl StructuralPartialEq for BlobObject
Auto Trait Implementations§
impl Freeze for BlobObject
impl RefUnwindSafe for BlobObject
impl Send for BlobObject
impl Sync for BlobObject
impl Unpin for BlobObject
impl UnsafeUnpin for BlobObject
impl UnwindSafe for BlobObject
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.