Enum dropbox_sdk::files::RelocationBatchV2Launch
source · [−]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
sourceimpl Clone for RelocationBatchV2Launch
impl Clone for RelocationBatchV2Launch
sourcefn clone(&self) -> RelocationBatchV2Launch
fn clone(&self) -> RelocationBatchV2Launch
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 RelocationBatchV2Launch
impl Debug for RelocationBatchV2Launch
sourceimpl<'de> Deserialize<'de> for RelocationBatchV2Launch
impl<'de> Deserialize<'de> for RelocationBatchV2Launch
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<RelocationBatchV2Launch> for RelocationBatchV2Launch
impl PartialEq<RelocationBatchV2Launch> for RelocationBatchV2Launch
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &RelocationBatchV2Launch) -> bool
fn ne(&self, other: &RelocationBatchV2Launch) -> bool
This method tests for !=
.
sourceimpl 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
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