Trait deno_web::BlobPart[][src]

pub trait BlobPart: Debug {
    fn read<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<&[u8], AnyError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn size(&self) -> usize; }

Required methods

Implementors