[][src]Struct rusoto_dynamodb::CancellationReason

pub struct CancellationReason {
    pub code: Option<String>,
    pub item: Option<HashMap<String, AttributeValue>>,
    pub message: Option<String>,
}

An ordered list of errors for each item in the request which caused the transaction to get cancelled. The values of the list are ordered according to the ordering of the TransactWriteItems request parameter. If no error occurred for the associated item an error with a Null code and Null message will be present.

Fields

code: Option<String>

Status code for the result of the cancelled transaction.

item: Option<HashMap<String, AttributeValue>>

Item in the request which caused the transaction to get cancelled.

message: Option<String>

Cancellation reason message description.

Trait Implementations

impl Clone for CancellationReason[src]

impl Default for CancellationReason[src]

impl PartialEq<CancellationReason> for CancellationReason[src]

impl Debug for CancellationReason[src]

impl StructuralPartialEq for CancellationReason[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self