pub enum CreateCaseError {
AttachmentSetExpired(String),
AttachmentSetIdNotFound(String),
CaseCreationLimitExceeded(String),
InternalServerError(String),
}Expand description
Errors returned by CreateCase
Variants§
AttachmentSetExpired(String)
The expiration time of the attachment set has passed. The set expires 1 hour after it is created.
AttachmentSetIdNotFound(String)
An attachment set with the specified ID could not be found.
CaseCreationLimitExceeded(String)
The case creation limit for the account has been exceeded.
InternalServerError(String)
An internal server error occurred.
Implementations§
Source§impl CreateCaseError
impl CreateCaseError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateCaseError>
Trait Implementations§
Source§impl Debug for CreateCaseError
impl Debug for CreateCaseError
Source§impl Display for CreateCaseError
impl Display for CreateCaseError
Source§impl Error for CreateCaseError
impl Error for CreateCaseError
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 CreateCaseError
impl PartialEq for CreateCaseError
impl StructuralPartialEq for CreateCaseError
Auto Trait Implementations§
impl Freeze for CreateCaseError
impl RefUnwindSafe for CreateCaseError
impl Send for CreateCaseError
impl Sync for CreateCaseError
impl Unpin for CreateCaseError
impl UnwindSafe for CreateCaseError
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