pub trait AtomicOperation: Send {
// Required method
fn as_executor(&mut self) -> &mut PgConnection;
// Provided method
fn now(&self) -> Option<DateTime<Utc>> { ... }
}pub trait AtomicOperation: Send {
// Required method
fn as_executor(&mut self) -> &mut PgConnection;
// Provided method
fn now(&self) -> Option<DateTime<Utc>> { ... }
}