pub enum PollResultBase {
    InProgress,
}Available on crate features 
sync_routes and dbx_async only.Expand description
Result returned by methods that poll for the status of an asynchronous job. Unions that extend
this union should add a ‘complete’ field with a type of the information returned upon job
completion. See PollEmptyResult for an example.
Variants§
InProgress
The asynchronous job is still in progress.
Trait Implementations§
Source§impl Clone for PollResultBase
 
impl Clone for PollResultBase
Source§fn clone(&self) -> PollResultBase
 
fn clone(&self) -> PollResultBase
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 PollResultBase
 
impl Debug for PollResultBase
Source§impl<'de> Deserialize<'de> for PollResultBase
 
impl<'de> Deserialize<'de> for PollResultBase
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<PollResultBase> for CreateFolderBatchJobStatus
Available on crate feature dbx_files only. 
impl From<PollResultBase> for CreateFolderBatchJobStatus
Available on crate feature 
dbx_files only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for DeleteBatchJobStatus
Available on crate feature dbx_files only. 
impl From<PollResultBase> for DeleteBatchJobStatus
Available on crate feature 
dbx_files only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for JobStatus
Available on crate feature dbx_sharing only. 
impl From<PollResultBase> for JobStatus
Available on crate feature 
dbx_sharing only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for MembersAddJobStatus
Available on crate feature dbx_team only. 
impl From<PollResultBase> for MembersAddJobStatus
Available on crate feature 
dbx_team only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for MembersAddJobStatusV2Result
Available on crate feature dbx_team only. 
impl From<PollResultBase> for MembersAddJobStatusV2Result
Available on crate feature 
dbx_team only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for PollEmptyResult
 
impl From<PollResultBase> for PollEmptyResult
Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for RelocationBatchJobStatus
Available on crate feature dbx_files only. 
impl From<PollResultBase> for RelocationBatchJobStatus
Available on crate feature 
dbx_files only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for RelocationBatchV2JobStatus
Available on crate feature dbx_files only. 
impl From<PollResultBase> for RelocationBatchV2JobStatus
Available on crate feature 
dbx_files only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for RemoveMemberJobStatus
Available on crate feature dbx_sharing only. 
impl From<PollResultBase> for RemoveMemberJobStatus
Available on crate feature 
dbx_sharing only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for SaveUrlJobStatus
Available on crate feature dbx_files only. 
impl From<PollResultBase> for SaveUrlJobStatus
Available on crate feature 
dbx_files only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for TeamFolderArchiveJobStatus
Available on crate feature dbx_team only. 
impl From<PollResultBase> for TeamFolderArchiveJobStatus
Available on crate feature 
dbx_team only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl From<PollResultBase> for UploadSessionFinishBatchJobStatus
Available on crate feature dbx_files only. 
impl From<PollResultBase> for UploadSessionFinishBatchJobStatus
Available on crate feature 
dbx_files only.Source§fn from(parent: PollResultBase) -> Self
 
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PollResultBase
 
impl PartialEq for PollResultBase
Source§impl Serialize for PollResultBase
 
impl Serialize for PollResultBase
impl Eq for PollResultBase
impl StructuralPartialEq for PollResultBase
Auto Trait Implementations§
impl Freeze for PollResultBase
impl RefUnwindSafe for PollResultBase
impl Send for PollResultBase
impl Sync for PollResultBase
impl Unpin for PollResultBase
impl UnwindSafe for PollResultBase
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.