Skip to main content

Repeat

Struct Repeat 

1.0.0 ยท Source
#[non_exhaustive]
pub struct Repeat { /* private fields */ }
Expand description

A reader which yields one byte over and over and over and over and over andโ€ฆ

This struct is generally created by calling repeat(). Please see the documentation of repeat() for more details.

Trait Implementationsยง

1.16.0 ยท Sourceยง

impl Debug for Repeat

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
1.0.0 ยท Sourceยง

impl Read for Repeat

Sourceยง

fn read_to_end(&mut self, _: &mut Vec<u8>) -> Result<usize>

This function is not supported by io::Repeat, because thereโ€™s no end of its data

Sourceยง

fn read_to_string(&mut self, _: &mut String) -> Result<usize>

This function is not supported by io::Repeat, because thereโ€™s no end of its data

Sourceยง

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Sourceยง

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

Reads the exact number of bytes required to fill buf. Read more
Sourceยง

fn read_buf(&mut self, buf: BorrowedCursor<'_, u8>) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf #78485)
Pull some bytes from this source into the specified buffer. Read more
Sourceยง

fn read_buf_exact(&mut self, buf: BorrowedCursor<'_, u8>) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf #78485)
Reads the exact number of bytes required to fill cursor. Read more
Sourceยง

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>

Like read, except that it reads into a slice of buffers. Read more
Sourceยง

fn is_read_vectored(&self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (can_vector #69941)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 ยท Sourceยง

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a โ€œby referenceโ€ adapter for this instance of Read. Read more
1.0.0 ยท Sourceยง

fn bytes(self) -> Bytes<Self> โ“˜
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 ยท Sourceยง

fn chain<R: Read>(self, next: R) -> Chain<Self, R> โ“˜
where Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 ยท Sourceยง

fn take(self, limit: u64) -> Take<Self> โ“˜
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
Sourceยง

fn read_array<const N: usize>(&mut self) -> Result<[u8; N]>
where Self: Sized,

๐Ÿ”ฌThis is a nightly-only experimental API. (read_array #148848)
Read and return a fixed array of bytes from this source. Read more
Sourceยง

fn read_le<T: FromEndianBytes>(&mut self) -> Result<T>
where Self: Sized,

๐Ÿ”ฌThis is a nightly-only experimental API. (read_le #156983)
Read and return a type (e.g. an integer) in little-endian order. Read more
Sourceยง

fn read_be<T: FromEndianBytes>(&mut self) -> Result<T>
where Self: Sized,

๐Ÿ”ฌThis is a nightly-only experimental API. (read_le #156983)
Read and return a type (e.g. an integer) in big-endian order. Read more

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

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

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.