dioxus_lib::prelude

Trait IntoAttributeValue

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

A value that can be converted into an attribute value

Required Methods§

source

fn into_value(self) -> AttributeValue

Convert into an attribute value

Implementations on Foreign Types§

source§

impl IntoAttributeValue for &str

source§

impl IntoAttributeValue for bool

source§

impl IntoAttributeValue for f32

source§

impl IntoAttributeValue for f64

source§

impl IntoAttributeValue for i32

source§

impl IntoAttributeValue for i64

source§

impl IntoAttributeValue for i128

source§

impl IntoAttributeValue for String

source§

impl IntoAttributeValue for Arguments<'_>

source§

impl<T> IntoAttributeValue for Option<T>

Implementors§