#[non_exhaustive]
pub enum UpdateCommentErrorKind {
CommentContentRequiredException(CommentContentRequiredException),
CommentContentSizeLimitExceededException(CommentContentSizeLimitExceededException),
CommentDeletedException(CommentDeletedException),
CommentDoesNotExistException(CommentDoesNotExistException),
CommentIdRequiredException(CommentIdRequiredException),
CommentNotCreatedByCallerException(CommentNotCreatedByCallerException),
InvalidCommentIdException(InvalidCommentIdException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the UpdateComment
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
CommentContentRequiredException(CommentContentRequiredException)
The comment is empty. You must provide some content for a comment. The content cannot be null.
CommentContentSizeLimitExceededException(CommentContentSizeLimitExceededException)
The comment is too large. Comments are limited to 1,000 characters.
CommentDeletedException(CommentDeletedException)
This comment has already been deleted. You cannot edit or delete a deleted comment.
CommentDoesNotExistException(CommentDoesNotExistException)
No comment exists with the provided ID. Verify that you have used the correct ID, and then try again.
CommentIdRequiredException(CommentIdRequiredException)
The comment ID is missing or null. A comment ID is required.
CommentNotCreatedByCallerException(CommentNotCreatedByCallerException)
You cannot modify or delete this comment. Only comment authors can modify or delete their comments.
InvalidCommentIdException(InvalidCommentIdException)
The comment ID is not in a valid format. Make sure that you have provided the full comment ID.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for UpdateCommentErrorKind
impl Send for UpdateCommentErrorKind
impl Sync for UpdateCommentErrorKind
impl Unpin for UpdateCommentErrorKind
impl !UnwindSafe for UpdateCommentErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more