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
sourceimpl Clone for SaveUrlResult
impl Clone for SaveUrlResult
sourcefn clone(&self) -> SaveUrlResult
fn clone(&self) -> SaveUrlResult
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 SaveUrlResult
impl Debug for SaveUrlResult
sourceimpl<'de> Deserialize<'de> for SaveUrlResult
impl<'de> Deserialize<'de> for SaveUrlResult
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<SaveUrlResult> for SaveUrlResult
impl PartialEq<SaveUrlResult> for SaveUrlResult
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &SaveUrlResult) -> bool
fn ne(&self, other: &SaveUrlResult) -> bool
This method tests for !=
.
sourceimpl 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
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