FetchBytes

Trait FetchBytes 

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

    // Provided methods
    fn fetch_bytes_local(&self) -> Result<Option<ByteNode>> { ... }
    fn fetch_data_local(&self) -> Option<Vec<u8>> { ... }
    fn as_inner(&self) -> Option<&dyn Any> { ... }
}

Required Methods§

Provided Methods§

Implementors§

Source§

impl FetchBytes for RawPointInner

Source§

impl<T> FetchBytes for Point<T>

Source§

impl<T, Extra> FetchBytes for RawPoint<T, Extra>