[][src]Struct rercon::ReConnection

pub struct ReConnection { /* fields omitted */ }

Drop-in replacement wrapper of Connection which intercepts all IO errors returned by Connection::exec to start the reconnection thread, and will opt to return BusyReconnecting instead.

For further docs, refer to Connection, as it shares the same API.

Methods

impl ReconnectingConnection[src]

pub fn open<S: Into<String>>(
    address: S,
    pass: S,
    connect_timeout: Option<Duration>
) -> Result<Self, RconError>
[src]

This function behaves identical to Connection::open.

pub fn exec<S: Into<String>>(&mut self, cmd: S) -> Result<String, RconError>[src]

This function behaves identical to Connection::exec unless Err([IO](enum.Error.html#variant.IO)) is returned, in which case it will start reconnecting and return BusyReconnecting until the connection has been re-established.

Trait Implementations

impl Clone for ReconnectingConnection[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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