[][src]Enum rusoto_codecommit::GetCommentReactionsError

pub enum GetCommentReactionsError {
    CommentDeleted(String),
    CommentDoesNotExist(String),
    CommentIdRequired(String),
    InvalidCommentId(String),
    InvalidContinuationToken(String),
    InvalidMaxResults(String),
    InvalidReactionUserArn(String),
}

Errors returned by GetCommentReactions

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.

InvalidContinuationToken(String)

The specified continuation token is not valid.

InvalidMaxResults(String)

The specified number of maximum results is not valid.

InvalidReactionUserArn(String)

The Amazon Resource Name (ARN) of the user or identity is not valid.

Implementations

impl GetCommentReactionsError[src]

Trait Implementations

impl Debug for GetCommentReactionsError[src]

impl Display for GetCommentReactionsError[src]

impl Error for GetCommentReactionsError[src]

impl PartialEq<GetCommentReactionsError> for GetCommentReactionsError[src]

impl StructuralPartialEq for GetCommentReactionsError[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.