Trait freya::prelude::IntoAttributeValue

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>

§

fn into_value(self) -> AttributeValue

Implementors§