[][src]Struct adventure::repeat::Repeat

pub struct Repeat<R> { /* fields omitted */ }

An Request adaptor for types that implements OneshotRequest, by cloning itself.

Trait Implementations

impl<R> BaseRequest for Repeat<R> where
    R: BaseRequest
[src]

type Ok = R::Ok

The type of successful values from the corresponding response.

type Error = R::Error

The type of failures from the corresponding response.

impl<R: Clone> Clone for Repeat<R>[src]

impl<R> From<R> for Repeat<R> where
    R: Clone
[src]

impl<R, C> OneshotRequest<C> for Repeat<R> where
    R: OneshotRequest<C> + Clone
[src]

type Response = R::Response

The type of corresponding responses of this request.

impl<R> PagedRequest for Repeat<R> where
    R: PagedRequest
[src]

impl<R, C> Request<C> for Repeat<R> where
    R: OneshotRequest<C> + Clone
[src]

type Response = R::Response

The type of corresponding responses of this request.

impl<R> RetriableRequest for Repeat<R> where
    R: RetriableRequest
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for Repeat<R> where
    R: RefUnwindSafe

impl<R> Send for Repeat<R> where
    R: Send

impl<R> Sync for Repeat<R> where
    R: Sync

impl<R> Unpin for Repeat<R> where
    R: Unpin

impl<R> UnwindSafe for Repeat<R> where
    R: UnwindSafe

Blanket Implementations

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

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

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

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

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.