pub enum OrchestratorResult {
Pending,
Done(PersistenceResult),
Failed(OrchestratorError),
}Expand description
Orchestrator step result.
Variants§
Pending
Operation in progress.
Done(PersistenceResult)
Download and write completed successfully.
Failed(OrchestratorError)
Operation failed.
Trait Implementations§
Source§impl Clone for OrchestratorResult
impl Clone for OrchestratorResult
Source§fn clone(&self) -> OrchestratorResult
fn clone(&self) -> OrchestratorResult
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OrchestratorResult
impl Debug for OrchestratorResult
impl Copy for OrchestratorResult
Auto Trait Implementations§
impl Freeze for OrchestratorResult
impl RefUnwindSafe for OrchestratorResult
impl Send for OrchestratorResult
impl Sync for OrchestratorResult
impl Unpin for OrchestratorResult
impl UnwindSafe for OrchestratorResult
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