[][src]Struct stubborn_io::tokio::StubbornIo

pub struct StubbornIo<T, C> { /* fields omitted */ }

The StubbornIo is a wrapper over a tokio AsyncRead/AsyncWrite item that will automatically invoke the UnderlyingIo::establish upon initialization and when a reconnect is needed. Because it implements deref, you are able to invoke all of the original methods on the wrapped IO.

Methods

impl<T, C> StubbornIo<T, C> where
    T: UnderlyingIo<C>,
    C: Clone + Send + Unpin + 'static, 
[src]

pub async fn connect(ctor_arg: impl Borrow<C>) -> Result<Self>[src]

Connects or creates a handle to the UnderlyingIo item, using the default reconnect options.

pub async fn connect_with_options(
    ctor_arg: impl Borrow<C>,
    options: ReconnectOptions
) -> Result<Self>
[src]

Trait Implementations

impl<T, C> DerefMut for StubbornIo<T, C>[src]

impl<T, C> Deref for StubbornIo<T, C>[src]

type Target = T

The resulting type after dereferencing.

impl<T, C> AsyncWrite for StubbornIo<T, C> where
    T: UnderlyingIo<C> + AsyncWrite,
    C: Clone + Send + Unpin + 'static, 
[src]

impl<T, C> AsyncRead for StubbornIo<T, C> where
    T: UnderlyingIo<C> + AsyncRead,
    C: Clone + Send + Unpin + 'static, 
[src]

Auto Trait Implementations

impl<T, C> !Sync for StubbornIo<T, C>

impl<T, C> Send for StubbornIo<T, C> where
    C: Send,
    T: Send

impl<T, C> Unpin for StubbornIo<T, C> where
    C: Unpin,
    T: Unpin

impl<T, C> !RefUnwindSafe for StubbornIo<T, C>

impl<T, C> !UnwindSafe for StubbornIo<T, C>

Blanket Implementations

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.

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

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

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

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized
[src]

fn write(&'a mut self, src: &'a [u8]) -> Write<'a, Self> where
    Self: Unpin
[src]

Write a buffer into this writter, returning how many bytes were written.

fn write_all(&'a mut self, src: &'a [u8]) -> WriteAll<'a, Self> where
    Self: Unpin
[src]

Attempt to write an entire buffer into this writter.

fn flush(&mut self) -> Flush<Self> where
    Self: Unpin
[src]

Flush the contents of this writer.

fn shutdown(&mut self) -> Shutdown<Self> where
    Self: Unpin
[src]

Shutdown this writer.

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

fn copy<W>(&'a mut self, dst: &'a mut W) -> Copy<'a, Self, W> where
    Self: Unpin,
    W: AsyncWrite + Unpin + ?Sized
[src]

Copy all data from self into the provided AsyncWrite. Read more

fn read(&'a mut self, dst: &'a mut [u8]) -> Read<'a, Self> where
    Self: Unpin
[src]

Read data into the provided buffer. Read more

fn read_exact(&'a mut self, dst: &'a mut [u8]) -> ReadExact<'a, Self> where
    Self: Unpin
[src]

Read exactly the amount of data needed to fill the provided buffer.

fn read_to_end(&'a mut self, dst: &'a mut Vec<u8>) -> ReadToEnd<'a, Self> where
    Self: Unpin
[src]

Read all bytes until EOF in this source, placing them into dst. Read more

fn read_to_string(&'a mut self, dst: &'a mut String) -> ReadToString<'a, Self> where
    Self: Unpin
[src]

Read all bytes until EOF in this source, placing them into dst. Read more

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,