pub trait IntoAttributeValue<T = ()> {
// Required method
fn into_value(self) -> AttributeValue;
}Expand description
A value that can be converted into an attribute value
Required Methods§
Sourcefn into_value(self) -> AttributeValue
fn into_value(self) -> AttributeValue
Convert into an attribute value
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".