Enum dropbox_sdk::dbx_async::LaunchResultBase
source · [−]pub enum LaunchResultBase {
AsyncJobId(AsyncJobId),
}Available on crate feature
dbx_async only.Expand description
Result returned by methods that launch an asynchronous job. A method who may either launch an
asynchronous job, or complete the request synchronously, can use this union by extending it, and
adding a ‘complete’ field with the type of the synchronous response. See
LaunchEmptyResult for an example.
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.
Trait Implementations
sourceimpl Clone for LaunchResultBase
impl Clone for LaunchResultBase
sourcefn clone(&self) -> LaunchResultBase
fn clone(&self) -> LaunchResultBase
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 LaunchResultBase
impl Debug for LaunchResultBase
sourceimpl<'de> Deserialize<'de> for LaunchResultBase
impl<'de> Deserialize<'de> for LaunchResultBase
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<LaunchResultBase> for LaunchResultBase
impl PartialEq<LaunchResultBase> for LaunchResultBase
sourcefn eq(&self, other: &LaunchResultBase) -> bool
fn eq(&self, other: &LaunchResultBase) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LaunchResultBase) -> bool
fn ne(&self, other: &LaunchResultBase) -> bool
This method tests for !=.
sourceimpl Serialize for LaunchResultBase
impl Serialize for LaunchResultBase
impl Eq for LaunchResultBase
impl StructuralEq for LaunchResultBase
impl StructuralPartialEq for LaunchResultBase
Auto Trait Implementations
impl RefUnwindSafe for LaunchResultBase
impl Send for LaunchResultBase
impl Sync for LaunchResultBase
impl Unpin for LaunchResultBase
impl UnwindSafe for LaunchResultBase
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