pub struct JobOrchestratorBackgroundJobs<T: JobOrchestrator> { /* private fields */ }Implementations§
Source§impl<T: JobOrchestrator> JobOrchestratorBackgroundJobs<T>
impl<T: JobOrchestrator> JobOrchestratorBackgroundJobs<T>
Trait Implementations§
Source§impl<T: JobOrchestrator> BackgroundJobService for JobOrchestratorBackgroundJobs<T>
impl<T: JobOrchestrator> BackgroundJobService for JobOrchestratorBackgroundJobs<T>
fn enqueue( &self, request: BackgroundJobRequest, ) -> AppServiceResult<BackgroundJobHandle>
fn status(&self, id: &str) -> AppServiceResult<BackgroundJobStatus>
Source§impl<T: Clone + JobOrchestrator> Clone for JobOrchestratorBackgroundJobs<T>
impl<T: Clone + JobOrchestrator> Clone for JobOrchestratorBackgroundJobs<T>
Source§fn clone(&self) -> JobOrchestratorBackgroundJobs<T>
fn clone(&self) -> JobOrchestratorBackgroundJobs<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for JobOrchestratorBackgroundJobs<T>
impl<T> RefUnwindSafe for JobOrchestratorBackgroundJobs<T>where
T: RefUnwindSafe,
impl<T> Send for JobOrchestratorBackgroundJobs<T>
impl<T> Sync for JobOrchestratorBackgroundJobs<T>
impl<T> Unpin for JobOrchestratorBackgroundJobs<T>
impl<T> UnsafeUnpin for JobOrchestratorBackgroundJobs<T>
impl<T> UnwindSafe for JobOrchestratorBackgroundJobs<T>where
T: RefUnwindSafe,
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