pub struct BlobUpdate {
pub key: String,
pub version: Vec<String>,
pub content_type: Option<String>,
pub data: Vec<u8>,
}Expand description
A blob update received from the server.
Fields§
§key: String§version: Vec<String>§content_type: Option<String>§data: Vec<u8>Trait Implementations§
Source§impl Clone for BlobUpdate
impl Clone for BlobUpdate
Source§fn clone(&self) -> BlobUpdate
fn clone(&self) -> BlobUpdate
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 moreAuto Trait Implementations§
impl Freeze for BlobUpdate
impl RefUnwindSafe for BlobUpdate
impl Send for BlobUpdate
impl Sync for BlobUpdate
impl Unpin for BlobUpdate
impl UnwindSafe for BlobUpdate
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