Enum dropbox_sdk::sharing::ShareFolderJobStatus
source · [−]pub enum ShareFolderJobStatus {
InProgress,
Complete(SharedFolderMetadata),
Failed(ShareFolderError),
}Available on crate feature
dbx_sharing only.Variants
InProgress
The asynchronous job is still in progress.
Complete(SharedFolderMetadata)
The share job has finished. The value is the metadata for the folder.
Failed(ShareFolderError)
Trait Implementations
sourceimpl Clone for ShareFolderJobStatus
impl Clone for ShareFolderJobStatus
sourcefn clone(&self) -> ShareFolderJobStatus
fn clone(&self) -> ShareFolderJobStatus
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 ShareFolderJobStatus
impl Debug for ShareFolderJobStatus
sourceimpl<'de> Deserialize<'de> for ShareFolderJobStatus
impl<'de> Deserialize<'de> for ShareFolderJobStatus
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
sourcefn eq(&self, other: &ShareFolderJobStatus) -> bool
fn eq(&self, other: &ShareFolderJobStatus) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ShareFolderJobStatus) -> bool
fn ne(&self, other: &ShareFolderJobStatus) -> bool
This method tests for !=.
sourceimpl Serialize for ShareFolderJobStatus
impl Serialize for ShareFolderJobStatus
impl Eq for ShareFolderJobStatus
impl StructuralEq for ShareFolderJobStatus
impl StructuralPartialEq for ShareFolderJobStatus
Auto Trait Implementations
impl RefUnwindSafe for ShareFolderJobStatus
impl Send for ShareFolderJobStatus
impl Sync for ShareFolderJobStatus
impl Unpin for ShareFolderJobStatus
impl UnwindSafe for ShareFolderJobStatus
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