pub enum RelocationBatchV2JobStatus {
    InProgress,
    Complete(RelocationBatchV2Result),
}Available on crate features 
sync_routes and dbx_files only.Expand description
Result returned by copy_batch_check_v2() or
move_batch_check_v2() that may either be in progress or
completed with result for each entry.
Variants§
InProgress
The asynchronous job is still in progress.
Complete(RelocationBatchV2Result)
The copy or move batch job has finished.
Trait Implementations§
Source§impl Clone for RelocationBatchV2JobStatus
 
impl Clone for RelocationBatchV2JobStatus
Source§fn clone(&self) -> RelocationBatchV2JobStatus
 
fn clone(&self) -> RelocationBatchV2JobStatus
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 RelocationBatchV2JobStatus
 
impl Debug for RelocationBatchV2JobStatus
Source§impl<'de> Deserialize<'de> for RelocationBatchV2JobStatus
 
impl<'de> Deserialize<'de> for RelocationBatchV2JobStatus
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 RelocationBatchV2JobStatus
 
impl From<PollResultBase> for RelocationBatchV2JobStatus
Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for RelocationBatchV2JobStatus
Auto Trait Implementations§
impl Freeze for RelocationBatchV2JobStatus
impl RefUnwindSafe for RelocationBatchV2JobStatus
impl Send for RelocationBatchV2JobStatus
impl Sync for RelocationBatchV2JobStatus
impl Unpin for RelocationBatchV2JobStatus
impl UnwindSafe for RelocationBatchV2JobStatus
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