Struct aws_smithy_client::SdkSuccess
source · pub struct SdkSuccess<O> {
pub raw: Response,
pub parsed: O,
}Expand description
Successful SDK Result
Fields§
§raw: ResponseRaw Response from the service. (e.g. Http Response)
parsed: OParsed response from the service
Trait Implementations§
source§impl<O> Debug for SdkSuccess<O>where
O: Debug,
impl<O> Debug for SdkSuccess<O>where
O: Debug,
source§impl<Handler, R, T, E> Policy<Operation<Handler, R>, SdkSuccess<T>, SdkError<E, Response>> for RetryHandlerwhere
Handler: Clone,
R: ClassifyRetry<SdkSuccess<T>, SdkError<E>>,
impl<Handler, R, T, E> Policy<Operation<Handler, R>, SdkSuccess<T>, SdkError<E, Response>> for RetryHandlerwhere
Handler: Clone,
R: ClassifyRetry<SdkSuccess<T>, SdkError<E>>,
§type Future = Pin<Box<dyn Future<Output = RetryHandler> + Send + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = RetryHandler> + Send + 'static, Global>>
The
Future type returned by Policy::retry.