Enum dropbox_sdk::files::SaveUrlResult
source · pub enum SaveUrlResult {
AsyncJobId(AsyncJobId),
Complete(FileMetadata),
}
Available on crate feature
dbx_files
only.Variants§
AsyncJobId(AsyncJobId)
This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job.
Complete(FileMetadata)
Metadata of the file where the URL is saved to.
Trait Implementations§
source§impl Clone for SaveUrlResult
impl Clone for SaveUrlResult
source§fn clone(&self) -> SaveUrlResult
fn clone(&self) -> SaveUrlResult
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 SaveUrlResult
impl Debug for SaveUrlResult
source§impl<'de> Deserialize<'de> for SaveUrlResult
impl<'de> Deserialize<'de> for SaveUrlResult
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 PartialEq<SaveUrlResult> for SaveUrlResult
impl PartialEq<SaveUrlResult> for SaveUrlResult
source§fn eq(&self, other: &SaveUrlResult) -> bool
fn eq(&self, other: &SaveUrlResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SaveUrlResult
impl Serialize for SaveUrlResult
impl StructuralPartialEq for SaveUrlResult
Auto Trait Implementations§
impl RefUnwindSafe for SaveUrlResult
impl Send for SaveUrlResult
impl Sync for SaveUrlResult
impl Unpin for SaveUrlResult
impl UnwindSafe for SaveUrlResult
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