pub struct GetData {
pub key: String,
pub size: usize,
pub data: Vec<u8>,
}Expand description
Successful result on the storage provider get function.
Fields§
§key: StringKey of the entry.
size: usizeByte size of the entry.
data: Vec<u8>Raw data of the entry.
Auto Trait Implementations§
impl Freeze for GetData
impl RefUnwindSafe for GetData
impl Send for GetData
impl Sync for GetData
impl Unpin for GetData
impl UnwindSafe for GetData
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