pub struct Blob { /* private fields */ }
Expand description
Implementation of crate::Blob
for the tokio
runtime.
Trait Implementations§
Source§impl Blob for Blob
impl Blob for Blob
Source§async fn read_at(&self, buf: &mut [u8], offset: u64) -> Result<(), Error>
async fn read_at(&self, buf: &mut [u8], offset: u64) -> Result<(), Error>
Read from the blob at the given offset. Read more
Source§async fn write_at(&self, buf: &[u8], offset: u64) -> Result<(), Error>
async fn write_at(&self, buf: &[u8], offset: u64) -> Result<(), Error>
Write to the blob at the given offset.
Source§impl Storage<Blob> for Context
impl Storage<Blob> for Context
Auto Trait Implementations§
impl Freeze for Blob
impl !RefUnwindSafe for Blob
impl Send for Blob
impl Sync for Blob
impl Unpin for Blob
impl !UnwindSafe for Blob
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