pub struct RusotoErrorWrapper<T: Retryable + StdError>(pub RusotoError<T>);
Tuple Fields§
§0: RusotoError<T>
Trait Implementations§
Source§impl<T: Retryable + StdError + 'static> Error for RusotoErrorWrapper<T>
impl<T: Retryable + StdError + 'static> Error for RusotoErrorWrapper<T>
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<T: Retryable + StdError> From<RusotoError<T>> for RusotoErrorWrapper<T>
impl<T: Retryable + StdError> From<RusotoError<T>> for RusotoErrorWrapper<T>
Source§fn from(err: RusotoError<T>) -> Self
fn from(err: RusotoError<T>) -> Self
Converts to this type from the input type.
Source§impl<T: Retryable + StdError> Retryable for RusotoErrorWrapper<T>
impl<T: Retryable + StdError> Retryable for RusotoErrorWrapper<T>
fn is_retryable(&self) -> bool
Auto Trait Implementations§
impl<T> !Freeze for RusotoErrorWrapper<T>
impl<T> RefUnwindSafe for RusotoErrorWrapper<T>where
T: RefUnwindSafe,
impl<T> Send for RusotoErrorWrapper<T>where
T: Send,
impl<T> Sync for RusotoErrorWrapper<T>where
T: Sync,
impl<T> Unpin for RusotoErrorWrapper<T>where
T: Unpin,
impl<T> UnwindSafe for RusotoErrorWrapper<T>where
T: 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