FetchBytes

Trait FetchBytes 

Source
pub trait FetchBytes: AsAny {
    // Required methods
    fn fetch_bytes(&self) -> FailFuture<'_, ByteNode>;
    fn fetch_data(&self) -> FailFuture<'_, Vec<u8>>;

    // Provided method
    fn as_inner(&self) -> Option<&dyn Any> { ... }
}

Required Methods§

Provided Methods§

Source

fn as_inner(&self) -> Option<&dyn Any>

Implementors§

Source§

impl FetchBytes for RawPointInner

Source§

impl<T> FetchBytes for Point<T>

Source§

impl<T, Extra: 'static> FetchBytes for RawPoint<T, Extra>