pub trait CastsTo<ST>: FallibleCastsTo<ST> { }
Expand description
Marker trait: this SQL type (Self
) can be cast to the target SQL type
(ST
) using CAST(expr AS target_sql_type)
Implementors§
impl CastsTo<Integer> for Bool
impl CastsTo<Json> for Jsonb
impl CastsTo<Jsonb> for Json
impl CastsTo<Text> for Bool
impl CastsTo<Text> for Date
impl CastsTo<Text> for Datetime
Available on crate feature
mysql_backend
only.impl CastsTo<Text> for Json
impl CastsTo<Text> for Jsonb
impl CastsTo<Text> for Time
impl CastsTo<Text> for Uuid
Available on crate feature
postgres_backend
only.