pub struct StoredObject {
pub meta: ObjectMeta,
pub data: Vec<u8>,
}Expand description
An object stored in the stub.
Fields§
§meta: ObjectMeta§data: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for StoredObject
impl Clone for StoredObject
Source§fn clone(&self) -> StoredObject
fn clone(&self) -> StoredObject
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 StoredObject
impl RefUnwindSafe for StoredObject
impl Send for StoredObject
impl Sync for StoredObject
impl Unpin for StoredObject
impl UnsafeUnpin for StoredObject
impl UnwindSafe for StoredObject
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