pub enum CreateLocationS3Error {
Internal(String),
InvalidRequest(String),
}
Expand description
Errors returned by CreateLocationS3
Variants§
Internal(String)
This exception is thrown when an error occurs in the AWS DataSync service.
InvalidRequest(String)
This exception is thrown when the client submits a malformed request.
Implementations§
Source§impl CreateLocationS3Error
impl CreateLocationS3Error
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateLocationS3Error>
Trait Implementations§
Source§impl Debug for CreateLocationS3Error
impl Debug for CreateLocationS3Error
Source§impl Display for CreateLocationS3Error
impl Display for CreateLocationS3Error
Source§impl Error for CreateLocationS3Error
impl Error for CreateLocationS3Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + '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 PartialEq for CreateLocationS3Error
impl PartialEq for CreateLocationS3Error
impl StructuralPartialEq for CreateLocationS3Error
Auto Trait Implementations§
impl Freeze for CreateLocationS3Error
impl RefUnwindSafe for CreateLocationS3Error
impl Send for CreateLocationS3Error
impl Sync for CreateLocationS3Error
impl Unpin for CreateLocationS3Error
impl UnwindSafe for CreateLocationS3Error
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