pub enum EndpointParseResponseOutput<ParseResponseOutput, RetryReason> {
Retryable(RetryReason),
Done(ParseResponseOutput),
}Variants§
Auto Trait Implementations§
impl<ParseResponseOutput, RetryReason> Freeze for EndpointParseResponseOutput<ParseResponseOutput, RetryReason>
impl<ParseResponseOutput, RetryReason> RefUnwindSafe for EndpointParseResponseOutput<ParseResponseOutput, RetryReason>where
RetryReason: RefUnwindSafe,
ParseResponseOutput: RefUnwindSafe,
impl<ParseResponseOutput, RetryReason> Send for EndpointParseResponseOutput<ParseResponseOutput, RetryReason>
impl<ParseResponseOutput, RetryReason> Sync for EndpointParseResponseOutput<ParseResponseOutput, RetryReason>
impl<ParseResponseOutput, RetryReason> Unpin for EndpointParseResponseOutput<ParseResponseOutput, RetryReason>
impl<ParseResponseOutput, RetryReason> UnwindSafe for EndpointParseResponseOutput<ParseResponseOutput, RetryReason>where
RetryReason: UnwindSafe,
ParseResponseOutput: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more