Enum dropbox_sdk::dbx_async::LaunchEmptyResult
source · [−]pub enum LaunchEmptyResult {
AsyncJobId(AsyncJobId),
Complete,
}Available on crate feature
dbx_async only.Expand description
Result returned by methods that may either launch an asynchronous job or complete synchronously. Upon synchronous completion of the job, no additional information is returned.
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
The job finished synchronously and successfully.
Trait Implementations
sourceimpl Clone for LaunchEmptyResult
impl Clone for LaunchEmptyResult
sourcefn clone(&self) -> LaunchEmptyResult
fn clone(&self) -> LaunchEmptyResult
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 LaunchEmptyResult
impl Debug for LaunchEmptyResult
sourceimpl<'de> Deserialize<'de> for LaunchEmptyResult
impl<'de> Deserialize<'de> for LaunchEmptyResult
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<LaunchEmptyResult> for LaunchEmptyResult
impl PartialEq<LaunchEmptyResult> for LaunchEmptyResult
sourcefn eq(&self, other: &LaunchEmptyResult) -> bool
fn eq(&self, other: &LaunchEmptyResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LaunchEmptyResult) -> bool
fn ne(&self, other: &LaunchEmptyResult) -> bool
This method tests for !=.
sourceimpl Serialize for LaunchEmptyResult
impl Serialize for LaunchEmptyResult
impl Eq for LaunchEmptyResult
impl StructuralEq for LaunchEmptyResult
impl StructuralPartialEq for LaunchEmptyResult
Auto Trait Implementations
impl RefUnwindSafe for LaunchEmptyResult
impl Send for LaunchEmptyResult
impl Sync for LaunchEmptyResult
impl Unpin for LaunchEmptyResult
impl UnwindSafe for LaunchEmptyResult
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