Trait FetchProcessReader

Source
pub trait FetchProcessReader: Send + Sync {
    // Required methods
    fn status(&self) -> FetchStatus;
    fn read(&self) -> Option<Vec<u8>>;
    fn box_clone(&self) -> Box<dyn FetchProcessReader>;
}

Required Methods§

Trait Implementations§

Source§

impl Clone for Box<dyn FetchProcessReader>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§