pub enum AttributeValue {
    N(String),
    S(String),
    Bool(bool),
    B(Vec<u8>),
    Null(bool),
    M(HashMap<String, AttributeValue>),
    L(Vec<AttributeValue>),
    Ss(Vec<String>),
    Ns(Vec<String>),
    Bs(Vec<Vec<u8>>),
}
Expand description

The value for an attribute that comes from DynamoDb.

Variants§

§

N(String)

An attribute of type Number. For example:

"N": "123.45"

Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations.

§

S(String)

An attribute of type String. For example:

"S": "Hello"
§

Bool(bool)

An attribute of type Boolean. For example:

"BOOL": true
§

B(Vec<u8>)

An attribute of type Binary. For example:

"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"

Type: Base64-encoded binary data object

§

Null(bool)

An attribute of type Null. For example:

"NULL": true
§

M(HashMap<String, AttributeValue>)

An attribute of type Map. For example:

"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}

Key Length Constraints: Maximum length of 65535.

§

L(Vec<AttributeValue>)

An attribute of type List. For example:

"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]
§

Ss(Vec<String>)

An attribute of type String Set. For example:

"SS": ["Giraffe", "Hippo" ,"Zebra"]
§

Ns(Vec<String>)

An attribute of type Number Set. For example:

"NS": ["42.2", "-19", "7.5", "3.14"]

Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations.

§

Bs(Vec<Vec<u8>>)

An attribute of type Binary Set. For example:

"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]

Type: Array of Base64-encoded binary data objects

Trait Implementations§

source§

impl Clone for AttributeValue

source§

fn clone(&self) -> AttributeValue

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AttributeValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for AttributeValue

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_37 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_21 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_18 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_9 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_14 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_17 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_15 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_11 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_13 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_19 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_34 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_22 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_23 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_35 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_29 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_8 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_29 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+1 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_28 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_17 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_31 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_8 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_35 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_18 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_27 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_12 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_27 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_38 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_22 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_37 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws_lambda_events+0_7 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_32 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodbstreams+0_47 only.
source§

fn from(attribute_value: AttributeValue) -> Self

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_26 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_16 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_34 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_15 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_38 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_31 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_19 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_36 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+1 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodbstreams+0_47 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_34 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_32 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodbstreams+0_46 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_15 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_24 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_26 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_32 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_21 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_39 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodbstreams+0_48 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_21 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_9 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_37 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_26 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_25 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_13 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws_lambda_events+0_7 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_10 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_29 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_36 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodb+0_48 only.
source§

fn from(attribute_value: AttributeValue) -> Self

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_37 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodb+0_47 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_7 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_35 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_28 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodb+0_46 only.
source§

fn from(attribute_value: AttributeValue) -> Self

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_19 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_18 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_22 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+1 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_27 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_8 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_30 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_34 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_29 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_25 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_24 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_30 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_30 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_16 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_35 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_18 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_33 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_14 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_39 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_39 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_16 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_28 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodb+0_48 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_12 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_25 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_26 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws_lambda_events+0_6 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_23 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodb+0_47 only.
source§

fn from(attribute_value: AttributeValue) -> Self

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_32 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_21 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodbstreams+0_48 only.
source§

fn from(attribute_value: AttributeValue) -> Self

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_9 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_10 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_27 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_31 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_36 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+1 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_15 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_8 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_13 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_25 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_38 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_11 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_31 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_9 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_33 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_10 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_23 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_17 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_17 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_30 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_14 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_12 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_7 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_39 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_24 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_33 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_14 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodb+0_46 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_19 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_36 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_22 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_28 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_11 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_10 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_12 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_13 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_11 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_24 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws_lambda_events+0_6 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature rusoto_dynamodbstreams+0_46 only.
source§

fn from(attribute_value: AttributeValue) -> Self

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_16 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_33 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodbstreams+0_38 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl From<AttributeValue> for AttributeValue

Available on crate feature aws-sdk-dynamodb+0_23 only.
source§

fn from(attribute_value: AttributeValue) -> AttributeValue

Converts to this type from the input type.
source§

impl PartialEq for AttributeValue

source§

fn eq(&self, other: &AttributeValue) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for AttributeValue

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for AttributeValue

source§

impl StructuralPartialEq for AttributeValue

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,