[][src]Struct genio::util::RepeatBytes

pub struct RepeatBytes<B> { /* fields omitted */ }

Reader repeating a sequence of bytes infinitely.

Trait Implementations

impl<B: AsRef<[u8]>> Read for RepeatBytes<B>[src]

type ReadError = Void

Value of this type is returned when read() fails. Read more

fn read_exact(
    &mut self,
    buf: &mut [u8]
) -> Result<(), ReadExactError<Self::ReadError>>
[src]

Read the exact number of bytes required to fill buf. Read more

fn available_bytes(&self, _at_least: usize) -> bool[src]

Hints whether there are at least at_least bytes available. Read more

fn chain<R: Read>(self, other: R) -> Chain<Self, R> where
    Self: Sized
[src]

Chains another reader after self. When self ends (returns Ok(0)), the other reader will provide bytes to read. Read more

fn read_to_end<T: ExtendFromReader>(
    &mut self,
    container: &mut T
) -> Result<usize, ExtendError<Self::ReadError, T::ExtendError>> where
    Self: ReadOverwrite
[src]

Reads all bytes into any type that can be extended by a reader. This is more generic than the case of std::io and might enable some optimizations. Read more

fn by_ref(&mut self) -> &mut Self where
    Self: Sized
[src]

Creates a "by reference" adaptor for this instance of Read. Read more

Auto Trait Implementations

impl<B> Send for RepeatBytes<B> where
    B: Send

impl<B> Sync for RepeatBytes<B> where
    B: Sync

Blanket Implementations

impl<R> ReadExt for R where
    R: Read + ?Sized
[src]

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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