pub trait IntoActiveValue<V>{
// Required method
fn into_active_value(self) -> ActiveValue<V>;
}Expand description
Any type that can be converted into an ActiveValue
Required Methodsยง
Sourcefn into_active_value(self) -> ActiveValue<V>
fn into_active_value(self) -> ActiveValue<V>
Method to perform the conversion
Implementations on Foreign Typesยง
Sourceยงimpl IntoActiveValue<&'static str> for &'static str
impl IntoActiveValue<&'static str> for &'static str
fn into_active_value(self) -> ActiveValue<&'static str>
Sourceยงimpl IntoActiveValue<bool> for bool
impl IntoActiveValue<bool> for bool
fn into_active_value(self) -> ActiveValue<bool>
Sourceยงimpl IntoActiveValue<f32> for f32
impl IntoActiveValue<f32> for f32
fn into_active_value(self) -> ActiveValue<f32>
Sourceยงimpl IntoActiveValue<f64> for f64
impl IntoActiveValue<f64> for f64
fn into_active_value(self) -> ActiveValue<f64>
Sourceยงimpl IntoActiveValue<i8> for i8
impl IntoActiveValue<i8> for i8
fn into_active_value(self) -> ActiveValue<i8>
Sourceยงimpl IntoActiveValue<i16> for i16
impl IntoActiveValue<i16> for i16
fn into_active_value(self) -> ActiveValue<i16>
Sourceยงimpl IntoActiveValue<i32> for i32
impl IntoActiveValue<i32> for i32
fn into_active_value(self) -> ActiveValue<i32>
Sourceยงimpl IntoActiveValue<i64> for i64
impl IntoActiveValue<i64> for i64
fn into_active_value(self) -> ActiveValue<i64>
Sourceยงimpl IntoActiveValue<u8> for u8
impl IntoActiveValue<u8> for u8
fn into_active_value(self) -> ActiveValue<u8>
Sourceยงimpl IntoActiveValue<u16> for u16
impl IntoActiveValue<u16> for u16
fn into_active_value(self) -> ActiveValue<u16>
Sourceยงimpl IntoActiveValue<u32> for u32
impl IntoActiveValue<u32> for u32
fn into_active_value(self) -> ActiveValue<u32>
Sourceยงimpl IntoActiveValue<u64> for u64
impl IntoActiveValue<u64> for u64
fn into_active_value(self) -> ActiveValue<u64>
Sourceยงimpl IntoActiveValue<String> for String
impl IntoActiveValue<String> for String
fn into_active_value(self) -> ActiveValue<String>
Sourceยงimpl IntoActiveValue<Vec<u8>> for Vec<u8>
impl IntoActiveValue<Vec<u8>> for Vec<u8>
fn into_active_value(self) -> ActiveValue<Vec<u8>>
Sourceยงimpl<V> IntoActiveValue<Option<V>> for Option<Option<V>>
impl<V> IntoActiveValue<Option<V>> for Option<Option<V>>
fn into_active_value(self) -> ActiveValue<Option<V>>
Sourceยงimpl<V> IntoActiveValue<Option<V>> for Option<V>
impl<V> IntoActiveValue<Option<V>> for Option<V>
fn into_active_value(self) -> ActiveValue<Option<V>>
Implementorsยง
impl IntoActiveValue<Value> for Json
impl IntoActiveValue<PermissionId> for PermissionId
Available on crate feature
rbac only.impl IntoActiveValue<ResourceId> for ResourceId
Available on crate feature
rbac only.impl IntoActiveValue<RoleId> for RoleId
Available on crate feature
rbac only.impl IntoActiveValue<UserId> for UserId
Available on crate feature
rbac only.impl IntoActiveValue<ChronoUnixTimestamp> for ChronoUnixTimestamp
Available on crate feature
with-chrono only.impl IntoActiveValue<ChronoUnixTimestampMillis> for ChronoUnixTimestampMillis
Available on crate feature
with-chrono only.impl IntoActiveValue<TimeUnixTimestamp> for TimeUnixTimestamp
Available on crate feature
with-time only.impl IntoActiveValue<TimeUnixTimestampMillis> for TimeUnixTimestampMillis
Available on crate feature
with-time only.