pub enum GetCommentError {
CommentDeleted(String),
CommentDoesNotExist(String),
CommentIdRequired(String),
EncryptionIntegrityChecksFailed(String),
EncryptionKeyAccessDenied(String),
EncryptionKeyDisabled(String),
EncryptionKeyNotFound(String),
EncryptionKeyUnavailable(String),
InvalidCommentId(String),
}Expand description
Errors returned by GetComment
Variants§
CommentDeleted(String)
This comment has already been deleted. You cannot edit or delete a deleted comment.
CommentDoesNotExist(String)
No comment exists with the provided ID. Verify that you have used the correct ID, and then try again.
CommentIdRequired(String)
The comment ID is missing or null. A comment ID is required.
EncryptionIntegrityChecksFailed(String)
An encryption integrity check failed.
EncryptionKeyAccessDenied(String)
An encryption key could not be accessed.
EncryptionKeyDisabled(String)
The encryption key is disabled.
EncryptionKeyNotFound(String)
No encryption key was found.
The encryption key is not available.
InvalidCommentId(String)
The comment ID is not in a valid format. Make sure that you have provided the full comment ID.
Implementations§
Source§impl GetCommentError
impl GetCommentError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetCommentError>
Trait Implementations§
Source§impl Debug for GetCommentError
impl Debug for GetCommentError
Source§impl Display for GetCommentError
impl Display for GetCommentError
Source§impl Error for GetCommentError
impl Error for GetCommentError
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 GetCommentError
impl PartialEq for GetCommentError
impl StructuralPartialEq for GetCommentError
Auto Trait Implementations§
impl Freeze for GetCommentError
impl RefUnwindSafe for GetCommentError
impl Send for GetCommentError
impl Sync for GetCommentError
impl Unpin for GetCommentError
impl UnwindSafe for GetCommentError
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