sea-orm-sync 2.0.0-rc.38

🐚 The sync version of SeaORM
Documentation
use super::impl_timestamp;
use crate as sea_orm;
use crate::{DbErr, TryGetError, prelude::ChronoDateTimeUtc};
use std::ops::{Deref, DerefMut};

/// A DataTime<Utc> mapped to i64 in database
#[derive(derive_more::Debug, Copy, Clone, PartialEq, Eq, Hash)]
#[debug("{_0:?}")]
pub struct ChronoUnixTimestamp(pub ChronoDateTimeUtc);

/// A DataTime<Utc> mapped to i64 in database, but in milliseconds
#[derive(derive_more::Debug, Copy, Clone, PartialEq, Eq, Hash)]
#[debug("{_0:?}")]
pub struct ChronoUnixTimestampMillis(pub ChronoDateTimeUtc);

impl_timestamp!(
    ChronoUnixTimestamp,
    ChronoDateTimeUtc,
    from_timestamp,
    to_timestamp
);

impl_timestamp!(
    ChronoUnixTimestampMillis,
    ChronoDateTimeUtc,
    from_timestamp_millis,
    to_timestamp_millis
);

fn from_timestamp(ts: i64) -> Option<ChronoUnixTimestamp> {
    ChronoDateTimeUtc::from_timestamp(ts, 0).map(ChronoUnixTimestamp)
}

fn to_timestamp(ts: ChronoUnixTimestamp) -> i64 {
    ts.0.timestamp()
}

fn from_timestamp_millis(ts: i64) -> Option<ChronoUnixTimestampMillis> {
    ChronoDateTimeUtc::from_timestamp_millis(ts).map(ChronoUnixTimestampMillis)
}

fn to_timestamp_millis(ts: ChronoUnixTimestampMillis) -> i64 {
    ts.0.timestamp_millis()
}