pub trait IntoPropertyWithKey<Key = String> {
    // Required method
    fn into_property_with_key(self, key: Key) -> Property<Key>;
}
Expand description

Trait implemented by all types that can be converted to a Property.

Required Methods§

source

fn into_property_with_key(self, key: Key) -> Property<Key>

Implementations on Foreign Types§

source§

impl<Key> IntoPropertyWithKey<Key> for &str

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for bool

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for f32

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for f64

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for i8

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for i16

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for i32

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for i64

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for u8

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for u16

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for u32

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for u64

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for String

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<f32>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<f64>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<i8>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<i16>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<i32>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<i64>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<u16>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<u32>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<u64>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

source§

impl<Key> IntoPropertyWithKey<Key> for Vec<String>

source§

fn into_property_with_key(self, key: Key) -> Property<Key>

Implementors§