[][src]Struct rusoto_dynamodb::BatchStatementRequest

pub struct BatchStatementRequest {
    pub consistent_read: Option<bool>,
    pub parameters: Option<Vec<AttributeValue>>,
    pub statement: String,
}

A PartiQL batch statement request.

Fields

consistent_read: Option<bool>

The read consistency of the PartiQL batch request.

parameters: Option<Vec<AttributeValue>>

The parameters associated with a PartiQL statement in the batch request.

statement: String

A valid PartiQL statement.

Trait Implementations

impl Clone for BatchStatementRequest[src]

impl Debug for BatchStatementRequest[src]

impl Default for BatchStatementRequest[src]

impl PartialEq<BatchStatementRequest> for BatchStatementRequest[src]

impl Serialize for BatchStatementRequest[src]

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