pub enum SaveUrlJobStatus {
InProgress,
Complete(FileMetadata),
Failed(SaveUrlError),
}
Available on crate features
sync_routes
and 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§
Source§impl Clone for SaveUrlJobStatus
impl Clone for SaveUrlJobStatus
Source§fn clone(&self) -> SaveUrlJobStatus
fn clone(&self) -> SaveUrlJobStatus
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 SaveUrlJobStatus
impl Debug for SaveUrlJobStatus
Source§impl<'de> Deserialize<'de> for SaveUrlJobStatus
impl<'de> Deserialize<'de> for SaveUrlJobStatus
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 SaveUrlJobStatus
impl From<PollResultBase> for SaveUrlJobStatus
Source§fn from(parent: PollResultBase) -> Self
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SaveUrlJobStatus
impl PartialEq for SaveUrlJobStatus
Source§impl Serialize for SaveUrlJobStatus
impl Serialize for SaveUrlJobStatus
impl StructuralPartialEq for SaveUrlJobStatus
Auto Trait Implementations§
impl Freeze for SaveUrlJobStatus
impl RefUnwindSafe for SaveUrlJobStatus
impl Send for SaveUrlJobStatus
impl Sync for SaveUrlJobStatus
impl Unpin for SaveUrlJobStatus
impl UnwindSafe for SaveUrlJobStatus
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