[−][src]Struct tokio_async_std::io::Repeat  
A reader which yields one byte over and over and over and over and over and...
This reader is created by the repeat function. See its
documentation for more.
Trait Implementations
impl Debug for Repeat[src]
impl Read for Repeat[src]
fn poll_read(
    self: Pin<&mut Self>, 
    _: &mut Context, 
    buf: &mut [u8]
) -> Poll<Result<usize>>[src]
self: Pin<&mut Self>,
_: &mut Context,
buf: &mut [u8]
) -> Poll<Result<usize>>
fn poll_read_vectored(
    self: Pin<&mut Self>, 
    cx: &mut Context, 
    bufs: &mut [IoSliceMut]
) -> Poll<Result<usize>>[src]
self: Pin<&mut Self>,
cx: &mut Context,
bufs: &mut [IoSliceMut]
) -> Poll<Result<usize>>
fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> ImplFuture<Result<usize>> where
    Self: Unpin, [src]
Self: Unpin,
fn read_vectored<'a>(
    &'a mut self, 
    bufs: &'a mut [IoSliceMut<'a>]
) -> ImplFuture<Result<usize>> where
    Self: Unpin, [src]
&'a mut self,
bufs: &'a mut [IoSliceMut<'a>]
) -> ImplFuture<Result<usize>> where
Self: Unpin,
fn read_to_end<'a>(
    &'a mut self, 
    buf: &'a mut Vec<u8>
) -> ImplFuture<Result<usize>> where
    Self: Unpin, [src]
&'a mut self,
buf: &'a mut Vec<u8>
) -> ImplFuture<Result<usize>> where
Self: Unpin,
fn read_to_string<'a>(
    &'a mut self, 
    buf: &'a mut String
) -> ImplFuture<Result<usize>> where
    Self: Unpin, [src]
&'a mut self,
buf: &'a mut String
) -> ImplFuture<Result<usize>> where
Self: Unpin,
fn read_exact<'a>(&'a mut self, buf: &'a mut [u8]) -> ImplFuture<Result<()>> where
    Self: Unpin, [src]
Self: Unpin,
fn take(self, limit: u64) -> Take<Self> where
    Self: Sized, [src]
Self: Sized,
fn by_ref(&mut self) -> &mut Self where
    Self: Sized, [src]
Self: Sized,
fn bytes(self) -> Bytes<Self> where
    Self: Sized, [src]
Self: Sized,
fn chain<R: Read>(self, next: R) -> Chain<Self, R> where
    Self: Sized, [src]
Self: Sized,
Auto Trait Implementations
impl RefUnwindSafe for Repeat
impl Send for Repeat
impl Sync for Repeat
impl Unpin for Repeat
impl UnwindSafe for Repeat
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,