[][src]Struct rusoto_qldb_session::SendCommandResult

pub struct SendCommandResult {
    pub abort_transaction: Option<AbortTransactionResult>,
    pub commit_transaction: Option<CommitTransactionResult>,
    pub end_session: Option<EndSessionResult>,
    pub execute_statement: Option<ExecuteStatementResult>,
    pub fetch_page: Option<FetchPageResult>,
    pub start_session: Option<StartSessionResult>,
    pub start_transaction: Option<StartTransactionResult>,
}

Fields

abort_transaction: Option<AbortTransactionResult>

Contains the details of the aborted transaction.

commit_transaction: Option<CommitTransactionResult>

Contains the details of the committed transaction.

end_session: Option<EndSessionResult>

Contains the details of the ended session.

execute_statement: Option<ExecuteStatementResult>

Contains the details of the executed statement.

fetch_page: Option<FetchPageResult>

Contains the details of the fetched page.

start_session: Option<StartSessionResult>

Contains the details of the started session that includes a session token. This SessionToken is required for every subsequent command that is issued during the current session.

start_transaction: Option<StartTransactionResult>

Contains the details of the started transaction.

Trait Implementations

impl Clone for SendCommandResult[src]

impl Debug for SendCommandResult[src]

impl Default for SendCommandResult[src]

impl<'de> Deserialize<'de> for SendCommandResult[src]

impl PartialEq<SendCommandResult> for SendCommandResult[src]

impl StructuralPartialEq for SendCommandResult[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.