forked from SeaQL/sea-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from billy1624/pr/1041
Pr/1041
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
pub mod common; | ||
|
||
use sea_orm::{IntoActiveValue, TryFromU64, TryGetable, Value}; | ||
|
||
/* | ||
When supporting a new type in SeaORM we should implement the following traits for it: | ||
- `IntoActiveValue`, given that it implemented `Into<Value>` already | ||
- `TryGetable` | ||
- `TryFromU64` | ||
Also, we need to update `impl FromQueryResult for JsonValue` at `src/query/json.rs` | ||
to correctly serialize the type as `serde_json::Value`. | ||
*/ | ||
|
||
pub fn it_impl_into_active_value<T: IntoActiveValue<V>, V: Into<Value>>() {} | ||
|
||
pub fn it_impl_try_getable<T: TryGetable>() {} | ||
|
||
pub fn it_impl_try_from_u64<T: TryFromU64>() {} | ||
|
||
#[allow(unused_macros)] | ||
macro_rules! it_impl_traits { | ||
( $ty: ty ) => { | ||
it_impl_into_active_value::<$ty, $ty>(); | ||
it_impl_into_active_value::<Option<$ty>, Option<$ty>>(); | ||
it_impl_into_active_value::<Option<Option<$ty>>, Option<$ty>>(); | ||
|
||
it_impl_try_getable::<$ty>(); | ||
it_impl_try_getable::<Option<$ty>>(); | ||
|
||
it_impl_try_from_u64::<$ty>(); | ||
}; | ||
} | ||
|
||
#[sea_orm_macros::test] | ||
#[cfg(feature = "sqlx-dep")] | ||
fn main() { | ||
it_impl_traits!(i8); | ||
it_impl_traits!(i16); | ||
it_impl_traits!(i32); | ||
it_impl_traits!(i64); | ||
it_impl_traits!(u8); | ||
it_impl_traits!(u16); | ||
it_impl_traits!(u32); | ||
it_impl_traits!(u64); | ||
it_impl_traits!(bool); | ||
it_impl_traits!(f32); | ||
it_impl_traits!(f64); | ||
it_impl_traits!(Vec<u8>); | ||
it_impl_traits!(String); | ||
it_impl_traits!(serde_json::Value); | ||
it_impl_traits!(chrono::NaiveDate); | ||
it_impl_traits!(chrono::NaiveTime); | ||
it_impl_traits!(chrono::NaiveDateTime); | ||
it_impl_traits!(chrono::DateTime<chrono::FixedOffset>); | ||
it_impl_traits!(chrono::DateTime<chrono::Utc>); | ||
it_impl_traits!(chrono::DateTime<chrono::Local>); | ||
it_impl_traits!(time::Date); | ||
it_impl_traits!(time::Time); | ||
it_impl_traits!(time::PrimitiveDateTime); | ||
it_impl_traits!(time::OffsetDateTime); | ||
it_impl_traits!(rust_decimal::Decimal); | ||
it_impl_traits!(uuid::Uuid); | ||
} |