Trait freya::prelude::IntoAttributeValue

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§

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 f32

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for f64

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for i8

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for i16

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for i32

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for i64

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for i128

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for isize

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for u8

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for u16

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for u32

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for u64

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for u128

§

fn into_value(self) -> AttributeValue

§

impl IntoAttributeValue for usize

§

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§

§

impl IntoAttributeValue for AttributeValue

§

impl<O, S> IntoAttributeValue for MappedSignal<O, S>

§

impl<T> IntoAttributeValue for Memo<T>

§

impl<T> IntoAttributeValue for ReadOnlySignal<T>

§

impl<T> IntoAttributeValue for Resource<T>

§

impl<T> IntoAttributeValue for Signal<T>

§

impl<T> IntoAttributeValue<AnyFmtMarker> for T
where T: DioxusFormattable,