Enum dropbox_sdk::dbx_async::PollResultBase  
source · [−]pub enum PollResultBase {
    InProgress,
}Available on crate feature 
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
sourceimpl Clone for PollResultBase
 
impl Clone for PollResultBase
sourcefn clone(&self) -> PollResultBase
 
fn clone(&self) -> PollResultBase
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 PollResultBase
 
impl Debug for PollResultBase
sourceimpl<'de> Deserialize<'de> for PollResultBase
 
impl<'de> Deserialize<'de> for PollResultBase
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<PollResultBase> for PollResultBase
 
impl PartialEq<PollResultBase> for PollResultBase
sourceimpl Serialize for PollResultBase
 
impl Serialize for PollResultBase
impl Eq for PollResultBase
impl StructuralEq for PollResultBase
impl StructuralPartialEq for PollResultBase
Auto Trait Implementations
impl RefUnwindSafe for PollResultBase
impl Send for PollResultBase
impl Sync for PollResultBase
impl Unpin for PollResultBase
impl UnwindSafe for PollResultBase
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