Enum serde_dynamo::AttributeValue
source · 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
impl Clone for AttributeValue
source§fn clone(&self) -> AttributeValue
fn clone(&self) -> AttributeValue
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AttributeValue
impl Debug for AttributeValue
source§impl<'de> Deserialize<'de> for AttributeValue
impl<'de> Deserialize<'de> for AttributeValue
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_21
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_21
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_19
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_19
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_21
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_21
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_15
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_15
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_19
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_19
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_9
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_9
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_48
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_48
only.source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_23
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_23
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_10
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_10
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_23
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_23
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_19
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_19
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_13
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_13
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_7
only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_7
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_11
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_11
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_11
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_11
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_17
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_17
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_18
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_18
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_46
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_46
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_8
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_8
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_10
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_10
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_11
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_11
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_7
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_7
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_24
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_24
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_23
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_23
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_24
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_24
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_15
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_15
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_12
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_12
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_48
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_48
only.source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_6
only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_6
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_47
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_47
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_22
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_22
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_14
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_14
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_8
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_8
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_48
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_48
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_7
only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_7
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_14
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_14
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_48
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_48
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_22
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_22
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_17
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_17
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_17
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_17
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_13
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_13
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_10
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_10
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_22
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_22
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_9
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_9
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_23
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_23
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_9
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_9
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_46
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_46
only.source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_8
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_8
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_22
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_22
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_7
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_7
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_13
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_13
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_12
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_12
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_16
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_16
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_16
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_16
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_10
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_10
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_24
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_24
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_14
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_14
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_15
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_15
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_16
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_16
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_18
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_18
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_17
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_17
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_11
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_11
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_21
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_21
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_18
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_18
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_12
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_12
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_8
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_8
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_15
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_15
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_9
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_9
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_21
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_21
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_47
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_47
only.source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_47
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_47
only.source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_46
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_46
only.source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_14
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_14
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_47
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_47
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_24
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_24
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_46
only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_46
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_6
only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_6
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_19
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_19
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_18
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_18
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_12
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_12
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_16
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_16
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_13
only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_13
only.source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
source§impl PartialEq<AttributeValue> for AttributeValue
impl PartialEq<AttributeValue> for AttributeValue
source§fn eq(&self, other: &AttributeValue) -> bool
fn eq(&self, other: &AttributeValue) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AttributeValue
impl Serialize for AttributeValue
impl Eq for AttributeValue
impl StructuralEq for AttributeValue
impl StructuralPartialEq for AttributeValue
Auto Trait Implementations§
impl RefUnwindSafe for AttributeValue
impl Send for AttributeValue
impl Sync for AttributeValue
impl Unpin for AttributeValue
impl UnwindSafe for AttributeValue
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.