pub enum RelocationBatchV2Launch {
AsyncJobId(AsyncJobId),
Complete(RelocationBatchV2Result),
}
Available on crate feature
dbx_files
only.Expand description
Result returned by copy_batch_v2()
or move_batch_v2()
that
may either launch an asynchronous job or complete synchronously.
Variants§
AsyncJobId(AsyncJobId)
This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job.
Complete(RelocationBatchV2Result)
Trait Implementations§
source§impl Clone for RelocationBatchV2Launch
impl Clone for RelocationBatchV2Launch
source§fn clone(&self) -> RelocationBatchV2Launch
fn clone(&self) -> RelocationBatchV2Launch
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 RelocationBatchV2Launch
impl Debug for RelocationBatchV2Launch
source§impl<'de> Deserialize<'de> for RelocationBatchV2Launch
impl<'de> Deserialize<'de> for RelocationBatchV2Launch
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 PartialEq<RelocationBatchV2Launch> for RelocationBatchV2Launch
impl PartialEq<RelocationBatchV2Launch> for RelocationBatchV2Launch
source§fn eq(&self, other: &RelocationBatchV2Launch) -> bool
fn eq(&self, other: &RelocationBatchV2Launch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for RelocationBatchV2Launch
impl Serialize for RelocationBatchV2Launch
impl StructuralPartialEq for RelocationBatchV2Launch
Auto Trait Implementations§
impl RefUnwindSafe for RelocationBatchV2Launch
impl Send for RelocationBatchV2Launch
impl Sync for RelocationBatchV2Launch
impl Unpin for RelocationBatchV2Launch
impl UnwindSafe for RelocationBatchV2Launch
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