Enum dropbox_sdk::files::SaveUrlJobStatus
source · [−]pub enum SaveUrlJobStatus {
InProgress,
Complete(FileMetadata),
Failed(SaveUrlError),
}
Available on crate feature
dbx_files
only.Variants
InProgress
The asynchronous job is still in progress.
Complete(FileMetadata)
Metadata of the file where the URL is saved to.
Failed(SaveUrlError)
Trait Implementations
sourceimpl Clone for SaveUrlJobStatus
impl Clone for SaveUrlJobStatus
sourcefn clone(&self) -> SaveUrlJobStatus
fn clone(&self) -> SaveUrlJobStatus
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 SaveUrlJobStatus
impl Debug for SaveUrlJobStatus
sourceimpl<'de> Deserialize<'de> for SaveUrlJobStatus
impl<'de> Deserialize<'de> for SaveUrlJobStatus
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<SaveUrlJobStatus> for SaveUrlJobStatus
impl PartialEq<SaveUrlJobStatus> for SaveUrlJobStatus
sourcefn eq(&self, other: &SaveUrlJobStatus) -> bool
fn eq(&self, other: &SaveUrlJobStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SaveUrlJobStatus) -> bool
fn ne(&self, other: &SaveUrlJobStatus) -> bool
This method tests for !=
.
sourceimpl Serialize for SaveUrlJobStatus
impl Serialize for SaveUrlJobStatus
impl StructuralPartialEq for SaveUrlJobStatus
Auto Trait Implementations
impl RefUnwindSafe for SaveUrlJobStatus
impl Send for SaveUrlJobStatus
impl Sync for SaveUrlJobStatus
impl Unpin for SaveUrlJobStatus
impl UnwindSafe for SaveUrlJobStatus
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