[][src]Enum rusoto_codecommit::PutCommentReactionError

pub enum PutCommentReactionError {
    CommentDeleted(String),
    CommentDoesNotExist(String),
    CommentIdRequired(String),
    InvalidCommentId(String),
    InvalidReactionValue(String),
    ReactionLimitExceeded(String),
    ReactionValueRequired(String),
}

Errors returned by PutCommentReaction

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.

InvalidReactionValue(String)

The value of the reaction is not valid. For more information, see the AWS CodeCommit User Guide.

ReactionLimitExceeded(String)

The number of reactions has been exceeded. Reactions are limited to one reaction per user for each individual comment ID.

ReactionValueRequired(String)

A reaction value is required.

Implementations

impl PutCommentReactionError[src]

Trait Implementations

impl Debug for PutCommentReactionError[src]

impl Display for PutCommentReactionError[src]

impl Error for PutCommentReactionError[src]

impl PartialEq<PutCommentReactionError> for PutCommentReactionError[src]

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