[][src]Struct ara::read_at_wrapper::ReadAtWrapper

pub struct ReadAtWrapper<Source> where
    Source: GetReaderAt
{ /* fields omitted */ }

Wrapper that provides ReadAt from a type that implements GetReaderAt

Implementations

impl<Source> ReadAtWrapper<Source> where
    Source: GetReaderAt
[src]

pub const DEFAULT_MAX_HEADS: usize[src]

pub fn new(
    source: Arc<Source>,
    len: u64,
    initial_head: Option<(u64, Source::Reader)>
) -> Self
[src]

Trait Implementations

impl<Source> ReadAt for ReadAtWrapper<Source> where
    Source: GetReaderAt
[src]

Auto Trait Implementations

impl<Source> !RefUnwindSafe for ReadAtWrapper<Source>

impl<Source> Send for ReadAtWrapper<Source> where
    Source: Send + Sync,
    <Source as GetReaderAt>::Reader: Send

impl<Source> Sync for ReadAtWrapper<Source> where
    Source: Send + Sync,
    <Source as GetReaderAt>::Reader: Send

impl<Source> Unpin for ReadAtWrapper<Source> where
    <Source as GetReaderAt>::Reader: AsyncRead + Unpin

impl<Source> UnwindSafe for ReadAtWrapper<Source> where
    Source: RefUnwindSafe,
    <Source as GetReaderAt>::Reader: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.