[][src]Enum apple_web_service_client::EndpointParseResponseOutput

pub enum EndpointParseResponseOutput<ParseResponseOutput, RetryReason> {
    Retryable(RetryReason),
    Done(ParseResponseOutput),
}

Variants

Retryable(RetryReason)
Done(ParseResponseOutput)

Auto Trait Implementations

impl<ParseResponseOutput, RetryReason> RefUnwindSafe for EndpointParseResponseOutput<ParseResponseOutput, RetryReason> where
    ParseResponseOutput: RefUnwindSafe,
    RetryReason: RefUnwindSafe

impl<ParseResponseOutput, RetryReason> Send for EndpointParseResponseOutput<ParseResponseOutput, RetryReason> where
    ParseResponseOutput: Send,
    RetryReason: Send

impl<ParseResponseOutput, RetryReason> Sync for EndpointParseResponseOutput<ParseResponseOutput, RetryReason> where
    ParseResponseOutput: Sync,
    RetryReason: Sync

impl<ParseResponseOutput, RetryReason> Unpin for EndpointParseResponseOutput<ParseResponseOutput, RetryReason> where
    ParseResponseOutput: Unpin,
    RetryReason: Unpin

impl<ParseResponseOutput, RetryReason> UnwindSafe for EndpointParseResponseOutput<ParseResponseOutput, RetryReason> where
    ParseResponseOutput: UnwindSafe,
    RetryReason: 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<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.