pub enum StartImportError {
BadRequest(String),
InternalFailure(String),
LimitExceeded(String),
}Expand description
Errors returned by StartImport
Variants§
BadRequest(String)
The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.
InternalFailure(String)
An internal Amazon Lex error occurred. Try your request again.
LimitExceeded(String)
The request exceeded a limit. Try your request again.
Implementations§
Source§impl StartImportError
impl StartImportError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StartImportError>
Trait Implementations§
Source§impl Debug for StartImportError
impl Debug for StartImportError
Source§impl Display for StartImportError
impl Display for StartImportError
Source§impl Error for StartImportError
impl Error for StartImportError
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 StartImportError
impl PartialEq for StartImportError
impl StructuralPartialEq for StartImportError
Auto Trait Implementations§
impl Freeze for StartImportError
impl RefUnwindSafe for StartImportError
impl Send for StartImportError
impl Sync for StartImportError
impl Unpin for StartImportError
impl UnwindSafe for StartImportError
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