pub enum RelocationBatchV2JobStatus {
InProgress,
Complete(RelocationBatchV2Result),
}
Available on crate feature
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
sourceimpl Clone for RelocationBatchV2JobStatus
impl Clone for RelocationBatchV2JobStatus
sourcefn clone(&self) -> RelocationBatchV2JobStatus
fn clone(&self) -> RelocationBatchV2JobStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RelocationBatchV2JobStatus
impl Debug for RelocationBatchV2JobStatus
sourceimpl<'de> Deserialize<'de> for RelocationBatchV2JobStatus
impl<'de> Deserialize<'de> for RelocationBatchV2JobStatus
sourcefn 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
sourceimpl PartialEq<RelocationBatchV2JobStatus> for RelocationBatchV2JobStatus
impl PartialEq<RelocationBatchV2JobStatus> for RelocationBatchV2JobStatus
sourcefn eq(&self, other: &RelocationBatchV2JobStatus) -> bool
fn eq(&self, other: &RelocationBatchV2JobStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RelocationBatchV2JobStatus) -> bool
fn ne(&self, other: &RelocationBatchV2JobStatus) -> bool
This method tests for !=
.
impl StructuralPartialEq for RelocationBatchV2JobStatus
Auto Trait Implementations
impl RefUnwindSafe for RelocationBatchV2JobStatus
impl Send for RelocationBatchV2JobStatus
impl Sync for RelocationBatchV2JobStatus
impl Unpin for RelocationBatchV2JobStatus
impl UnwindSafe for RelocationBatchV2JobStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more