Implement IntoActiveValue for Vec<u8> types

This commit is contained in:
Billy Chan 2022-09-15 15:40:34 +08:00
parent bde43f51f8
commit 8ecb4fccba
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7

View File

@ -682,6 +682,7 @@ impl_into_active_value!(f32);
impl_into_active_value!(f64);
impl_into_active_value!(&'static str);
impl_into_active_value!(String);
impl_into_active_value!(Vec<u8>);
#[cfg(feature = "with-json")]
#[cfg_attr(docsrs, doc(cfg(feature = "with-json")))]