pub struct OutboxManager<S, P> { /* private fields */ }Implementations§
Source§impl<S, P> OutboxManager<S, P>
impl<S, P> OutboxManager<S, P>
pub fn new(storage: S, publisher: P, config: Arc<OutboxConfig>) -> Self
pub async fn run(&mut self) -> Result<(), OutboxError>
Auto Trait Implementations§
impl<S, P> Freeze for OutboxManager<S, P>
impl<S, P> RefUnwindSafe for OutboxManager<S, P>where
S: RefUnwindSafe,
P: RefUnwindSafe,
impl<S, P> Send for OutboxManager<S, P>
impl<S, P> Sync for OutboxManager<S, P>
impl<S, P> Unpin for OutboxManager<S, P>
impl<S, P> UnsafeUnpin for OutboxManager<S, P>where
S: UnsafeUnpin,
P: UnsafeUnpin,
impl<S, P> UnwindSafe for OutboxManager<S, P>where
S: UnwindSafe,
P: UnwindSafe,
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