Struct ate::prelude::Dao[][src]

pub struct Dao<D> where
    D: Serialize + DeserializeOwned + Clone
{ /* fields omitted */ }

Implementations

impl<D> Dao<D> where
    D: Serialize + DeserializeOwned + Clone
[src]

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

pub fn detach(&mut self)[src]

pub fn auth(&self) -> &MetaAuthorization[src]

pub fn auth_mut(&mut self) -> &mut MetaAuthorization[src]

pub fn delete(self) -> Result<(), SerializationError>[src]

pub async fn try_lock<'a>(
    &mut self,
    dio: &mut Dio<'a>
) -> Result<bool, LockError>
[src]

pub async fn try_lock_then_delete<'a>(
    &mut self,
    dio: &mut Dio<'a>
) -> Result<bool, LockError>
[src]

pub async fn unlock<'a>(&mut self, dio: &mut Dio<'a>) -> Result<bool, LockError>[src]

pub fn is_locked(&self) -> bool[src]

Trait Implementations

impl<D: Debug> Debug for Dao<D> where
    D: Serialize + DeserializeOwned + Clone
[src]

impl<D> Deref for Dao<D> where
    D: Serialize + DeserializeOwned + Clone
[src]

type Target = D

The resulting type after dereferencing.

impl<D> DerefMut for Dao<D> where
    D: Serialize + DeserializeOwned + Clone
[src]

impl<D> Drop for Dao<D> where
    D: Serialize + DeserializeOwned + Clone
[src]

Auto Trait Implementations

impl<D> !RefUnwindSafe for Dao<D>

impl<D> !Send for Dao<D>

impl<D> !Sync for Dao<D>

impl<D> Unpin for Dao<D> where
    D: Unpin

impl<D> !UnwindSafe for Dao<D>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,