[][src]Trait oxygengine::prelude::FetchProcessReader

pub trait FetchProcessReader: Send + Sync {
    fn status(&self) -> FetchStatus;
fn read(&self) -> Option<Vec<u8>>;
fn byte_size(&self) -> Option<usize>;
fn box_clone(&self) -> Box<dyn FetchProcessReader + 'static>; }

Required methods

fn status(&self) -> FetchStatus

fn read(&self) -> Option<Vec<u8>>

fn byte_size(&self) -> Option<usize>

fn box_clone(&self) -> Box<dyn FetchProcessReader + 'static>

Loading content...

Implementors

impl FetchProcessReader for FetchProcess[src]

Loading content...