Trait IntoActiveValue

pub trait IntoActiveValue<V>
where V: Into<Value>,
{ // Required method fn into_active_value(self) -> ActiveValue<V>; }
Expand description

Any type that can be converted into an ActiveValue

Required Methods§

fn into_active_value(self) -> ActiveValue<V>

Method to perform the conversion

Implementations on Foreign Types§

§

impl IntoActiveValue<&'static str> for &'static str

§

fn into_active_value(self) -> ActiveValue<&'static str>

§

impl IntoActiveValue<bool> for bool

§

impl IntoActiveValue<f32> for f32

§

impl IntoActiveValue<f64> for f64

§

impl IntoActiveValue<i8> for i8

§

impl IntoActiveValue<i16> for i16

§

impl IntoActiveValue<i32> for i32

§

impl IntoActiveValue<i64> for i64

§

impl IntoActiveValue<u8> for u8

§

impl IntoActiveValue<u16> for u16

§

impl IntoActiveValue<u32> for u32

§

impl IntoActiveValue<u64> for u64

§

impl IntoActiveValue<String> for String

§

impl IntoActiveValue<Vec<u8>> for Vec<u8>

§

impl<V> IntoActiveValue<Option<V>> for Option<Option<V>>

§

impl<V> IntoActiveValue<Option<V>> for Option<V>

Implementors§