Enum dropbox_sdk::dbx_async::LaunchEmptyResult
source · pub enum LaunchEmptyResult {
AsyncJobId(AsyncJobId),
Complete,
}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§
source§impl Clone for LaunchEmptyResult
Available on crate feature dbx_async only.
impl Clone for LaunchEmptyResult
Available on crate feature
dbx_async only.source§fn clone(&self) -> LaunchEmptyResult
fn clone(&self) -> LaunchEmptyResult
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 LaunchEmptyResult
Available on crate feature dbx_async only.
impl Debug for LaunchEmptyResult
Available on crate feature
dbx_async only.source§impl<'de> Deserialize<'de> for LaunchEmptyResult
Available on crate feature dbx_async only.
impl<'de> Deserialize<'de> for LaunchEmptyResult
Available on crate feature
dbx_async only.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 LaunchEmptyResult
Available on crate feature dbx_async only.
impl From<LaunchResultBase> for LaunchEmptyResult
Available on crate feature
dbx_async only.source§fn from(parent: LaunchResultBase) -> Self
fn from(parent: LaunchResultBase) -> Self
Converts to this type from the input type.
source§impl PartialEq for LaunchEmptyResult
Available on crate feature dbx_async only.
impl PartialEq for LaunchEmptyResult
Available on crate feature
dbx_async only.source§fn 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 ==.source§impl Serialize for LaunchEmptyResult
Available on crate feature dbx_async only.
impl Serialize for LaunchEmptyResult
Available on crate feature
dbx_async only.impl Eq for LaunchEmptyResult
Available on crate feature
dbx_async only.impl StructuralEq for LaunchEmptyResult
Available on crate feature
dbx_async only.impl StructuralPartialEq for LaunchEmptyResult
Available on crate feature
dbx_async only.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§
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