pub trait IntoAttributeValue<'a> {
    // Required method
    fn into_value(self, bump: &'a Bump) -> AttributeValue<'a>;
}
Expand description

A value that can be converted into an attribute value

Required Methods§

fn into_value(self, bump: &'a Bump) -> AttributeValue<'a>

Convert into an attribute value

Implementations on Foreign Types§

§

impl<'a> IntoAttributeValue<'a> for &'a str

§

fn into_value(self, _: &'a Bump) -> AttributeValue<'a>

§

impl<'a> IntoAttributeValue<'a> for bool

§

fn into_value(self, _: &'a Bump) -> AttributeValue<'a>

§

impl<'a> IntoAttributeValue<'a> for Arguments<'_>

§

fn into_value(self, bump: &'a Bump) -> AttributeValue<'a>

§

impl<'a> IntoAttributeValue<'a> for i64

§

fn into_value(self, _: &'a Bump) -> AttributeValue<'a>

§

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

§

fn into_value(self, bump: &'a Bump) -> AttributeValue<'a>

§

impl<'a> IntoAttributeValue<'a> for f64

§

fn into_value(self, _: &'a Bump) -> AttributeValue<'a>

Implementors§