pub struct AsyncDocs { /* private fields */ }Implementations§
Source§impl AsyncDocs
impl AsyncDocs
pub async fn insert( &self, id: Uuid, hmac: Option<DocumentHmac>, document: &EncryptedDocument, ) -> LbResult<()>
pub async fn insert_pending( &self, id: Uuid, hmac: DocumentHmac, document: &EncryptedDocument, ) -> LbResult<()>
pub async fn promote_pending( &self, id: Uuid, hmac: DocumentHmac, ) -> LbResult<()>
pub fn exists(&self, id: Uuid, hmac: Option<DocumentHmac>) -> bool
pub async fn get( &self, id: Uuid, hmac: Option<DocumentHmac>, ) -> LbResult<EncryptedDocument>
pub async fn maybe_get( &self, id: Uuid, hmac: Option<DocumentHmac>, ) -> LbResult<Option<EncryptedDocument>>
pub async fn maybe_size( &self, id: Uuid, hmac: Option<DocumentHmac>, ) -> LbResult<Option<u64>>
pub async fn delete(&self, id: Uuid, hmac: Option<DocumentHmac>) -> LbResult<()>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AsyncDocs
impl RefUnwindSafe for AsyncDocs
impl Send for AsyncDocs
impl Sync for AsyncDocs
impl Unpin for AsyncDocs
impl UnsafeUnpin for AsyncDocs
impl UnwindSafe for AsyncDocs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more