pub struct SecureOutboxService<'a> { /* private fields */ }Implementations§
Source§impl SecureOutboxService<'_>
impl SecureOutboxService<'_>
pub fn list_failed(&self) -> ImResult<Vec<SecureOutboxEntry>>
pub async fn list_failed_async(&self) -> ImResult<Vec<SecureOutboxEntry>>
pub fn retry(&self, outbox_id: SecureOutboxId) -> ImResult<SecureOutboxResult>
pub async fn retry_async( &self, outbox_id: SecureOutboxId, ) -> ImResult<SecureOutboxResult>
pub fn drop(&self, outbox_id: SecureOutboxId) -> ImResult<SecureOutboxResult>
pub async fn drop_async( &self, outbox_id: SecureOutboxId, ) -> ImResult<SecureOutboxResult>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for SecureOutboxService<'a>
impl<'a> !UnwindSafe for SecureOutboxService<'a>
impl<'a> Freeze for SecureOutboxService<'a>
impl<'a> Send for SecureOutboxService<'a>
impl<'a> Sync for SecureOutboxService<'a>
impl<'a> Unpin for SecureOutboxService<'a>
impl<'a> UnsafeUnpin for SecureOutboxService<'a>
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