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§

source

fn into_active_value(self) -> ActiveValue<V>

Method to perform the conversion

Implementations on Foreign Types§

source§

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

source§

impl IntoActiveValue<bool> for bool

source§

impl IntoActiveValue<f32> for f32

source§

impl IntoActiveValue<f64> for f64

source§

impl IntoActiveValue<i8> for i8

source§

impl IntoActiveValue<i16> for i16

source§

impl IntoActiveValue<i32> for i32

source§

impl IntoActiveValue<i64> for i64

source§

impl IntoActiveValue<u8> for u8

source§

impl IntoActiveValue<u16> for u16

source§

impl IntoActiveValue<u32> for u32

source§

impl IntoActiveValue<u64> for u64

source§

impl IntoActiveValue<String> for String

source§

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

source§

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

source§

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

Implementors§