Trait ate::dio::DaoObjReal[][src]

pub trait DaoObjReal {
    fn key(&self) -> &PrimaryKey;
fn delete<'a>(self, dio: &mut Dio<'a>) -> Result<(), SerializationError>;
fn when_created(&self) -> u64;
fn when_updated(&self) -> u64; }

Required methods

fn key(&self) -> &PrimaryKey[src]

fn delete<'a>(self, dio: &mut Dio<'a>) -> Result<(), SerializationError>[src]

fn when_created(&self) -> u64[src]

fn when_updated(&self) -> u64[src]

Loading content...

Implementors

impl<D> DaoObjReal for Dao<D> where
    Self: Send + Sync,
    D: Serialize + DeserializeOwned + Clone + Send + Sync
[src]

Loading content...