pub enum RelocationBatchJobStatus {
InProgress,
Complete(RelocationBatchResult),
Failed(RelocationBatchError),
}
Available on crate features
sync_routes
and dbx_files
only.Variants§
InProgress
The asynchronous job is still in progress.
Complete(RelocationBatchResult)
The copy or move batch job has finished.
Failed(RelocationBatchError)
The copy or move batch job has failed with exception.
Trait Implementations§
Source§impl Clone for RelocationBatchJobStatus
impl Clone for RelocationBatchJobStatus
Source§fn clone(&self) -> RelocationBatchJobStatus
fn clone(&self) -> RelocationBatchJobStatus
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 RelocationBatchJobStatus
impl Debug for RelocationBatchJobStatus
Source§impl<'de> Deserialize<'de> for RelocationBatchJobStatus
impl<'de> Deserialize<'de> for RelocationBatchJobStatus
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<PollResultBase> for RelocationBatchJobStatus
impl From<PollResultBase> for RelocationBatchJobStatus
Source§fn from(parent: PollResultBase) -> Self
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RelocationBatchJobStatus
impl PartialEq for RelocationBatchJobStatus
Source§impl Serialize for RelocationBatchJobStatus
impl Serialize for RelocationBatchJobStatus
impl StructuralPartialEq for RelocationBatchJobStatus
Auto Trait Implementations§
impl Freeze for RelocationBatchJobStatus
impl RefUnwindSafe for RelocationBatchJobStatus
impl Send for RelocationBatchJobStatus
impl Sync for RelocationBatchJobStatus
impl Unpin for RelocationBatchJobStatus
impl UnwindSafe for RelocationBatchJobStatus
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