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<f32> for f32

source§

impl IntoActiveValue<i64> for i64

source§

impl IntoActiveValue<f64> for f64

source§

impl<V> IntoActiveValue<Option<V>> for Option<Option<V>>where V: IntoActiveValue<V> + Into<Value> + Nullable,

source§

impl IntoActiveValue<u8> for u8

source§

impl IntoActiveValue<u32> for u32

source§

impl IntoActiveValue<String> for String

source§

impl IntoActiveValue<Vec<u8, Global>> for Vec<u8, Global>

source§

impl IntoActiveValue<DateTime<Local>> for DateTime<Local>

source§

impl IntoActiveValue<u64> for u64

source§

impl IntoActiveValue<i32> for i32

source§

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

source§

impl IntoActiveValue<DateTime<FixedOffset>> for DateTime<FixedOffset>

source§

impl IntoActiveValue<DateTime<Utc>> for DateTime<Utc>

source§

impl IntoActiveValue<i16> for i16

source§

impl IntoActiveValue<u16> for u16

source§

impl<V> IntoActiveValue<Option<V>> for Option<V>where V: IntoActiveValue<V> + Into<Value> + Nullable,

source§

impl IntoActiveValue<bool> for bool

source§

impl IntoActiveValue<i8> for i8

Implementors§