pub trait IntoAttributeValue {
    // Required method
    fn into_value(self) -> AttributeValue;
}
Expand description

A value that can be converted into an attribute value

Required Methods§

fn into_value(self) -> AttributeValue

Convert into an attribute value

Implementations on Foreign Types§

§

impl IntoAttributeValue for &str

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for bool

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for f64

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for i64

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for String

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for Arguments<'_>

§

fn into_value(self) -> AttributeValue

§

impl<T> IntoAttributeValue for Option<T>where T: IntoAttributeValue,

§

fn into_value(self) -> AttributeValue

Implementors§

§

impl IntoAttributeValue for AttributeValue

§

impl<T> IntoAttributeValue for GlobalMemo<T>where T: PartialEq + 'static + Clone + IntoAttributeValue,

§

impl<T> IntoAttributeValue for GlobalSignal<T>where T: 'static + Clone + IntoAttributeValue,

§

impl<T> IntoAttributeValue for ReadOnlySignal<T>where T: Clone + IntoAttributeValue,

§

impl<T> IntoAttributeValue for Signal<T>where T: Clone + IntoAttributeValue,