pub enum AddCommunicationToCaseError {
AttachmentSetExpired(String),
AttachmentSetIdNotFound(String),
CaseIdNotFound(String),
InternalServerError(String),
}Expand description
Errors returned by AddCommunicationToCase
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.
CaseIdNotFound(String)
The requested caseId could not be located.
InternalServerError(String)
An internal server error occurred.
Implementations§
Source§impl AddCommunicationToCaseError
impl AddCommunicationToCaseError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<AddCommunicationToCaseError>
Trait Implementations§
Source§impl Debug for AddCommunicationToCaseError
impl Debug for AddCommunicationToCaseError
Source§impl Error for AddCommunicationToCaseError
impl Error for AddCommunicationToCaseError
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()
impl StructuralPartialEq for AddCommunicationToCaseError
Auto Trait Implementations§
impl Freeze for AddCommunicationToCaseError
impl RefUnwindSafe for AddCommunicationToCaseError
impl Send for AddCommunicationToCaseError
impl Sync for AddCommunicationToCaseError
impl Unpin for AddCommunicationToCaseError
impl UnwindSafe for AddCommunicationToCaseError
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