pub enum RelocationBatchV2Launch {
AsyncJobId(AsyncJobId),
Complete(RelocationBatchV2Result),
}
Available on crate features
sync_routes
and 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 From<LaunchResultBase> for RelocationBatchV2Launch
impl From<LaunchResultBase> for RelocationBatchV2Launch
Source§fn from(parent: LaunchResultBase) -> Self
fn from(parent: LaunchResultBase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RelocationBatchV2Launch
impl PartialEq for RelocationBatchV2Launch
Source§impl Serialize for RelocationBatchV2Launch
impl Serialize for RelocationBatchV2Launch
impl StructuralPartialEq for RelocationBatchV2Launch
Auto Trait Implementations§
impl Freeze for RelocationBatchV2Launch
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