Add bson::UtcDateTime support

This commit is contained in:
Samuel Hurel 2020-04-24 18:58:22 +02:00
parent 9b20dd1a48
commit 6996fae099

View File

@ -1,5 +1,6 @@
use crate::{impl_scalar_internal, Result, Scalar, Value};
use bson::oid::ObjectId;
use bson::{oid::ObjectId, UtcDateTime};
use chrono::{DateTime, Utc};
impl Scalar for ObjectId {
fn type_name() -> &'static str {
@ -19,3 +20,19 @@ impl Scalar for ObjectId {
}
impl_scalar_internal!(ObjectId);
impl Scalar for UtcDateTime {
fn type_name() -> &'static str {
"DateTime"
}
fn parse(value: &Value) -> Option<Self> {
DateTime::<Utc>::parse(value).map(UtcDateTime::from)
}
fn to_json(&self) -> Result<serde_json::Value> {
(**self).to_json()
}
}
impl_scalar_internal!(UtcDateTime);