Enum dropbox_sdk::files::SaveUrlJobStatus [−][src]
pub enum SaveUrlJobStatus {
InProgress,
Complete(FileMetadata),
Failed(SaveUrlError),
}
This is supported on crate feature
dbx_files
only.Variants
The asynchronous job is still in progress.
Complete(FileMetadata)
Metadata of the file where the URL is saved to.
Tuple Fields of Complete
0: FileMetadata
Failed(SaveUrlError)
Tuple Fields of Failed
0: SaveUrlError
Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more