[][src]Enum rusoto_codecommit::DeleteCommentContentError

pub enum DeleteCommentContentError {
    CommentDeleted(String),
    CommentDoesNotExist(String),
    CommentIdRequired(String),
    InvalidCommentId(String),
}

Errors returned by DeleteCommentContent

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.

InvalidCommentId(String)

The comment ID is not in a valid format. Make sure that you have provided the full comment ID.

Implementations

impl DeleteCommentContentError[src]

Trait Implementations

impl Debug for DeleteCommentContentError[src]

impl Display for DeleteCommentContentError[src]

impl Error for DeleteCommentContentError[src]

impl PartialEq<DeleteCommentContentError> for DeleteCommentContentError[src]

impl StructuralPartialEq for DeleteCommentContentError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.