pub enum UploadSessionFinishBatchResultEntry {
Success(FileMetadata),
Failure(UploadSessionFinishError),
}
Available on crate features
sync_routes
and dbx_files
only.Variants§
Success(FileMetadata)
Failure(UploadSessionFinishError)
Trait Implementations§
Source§impl Clone for UploadSessionFinishBatchResultEntry
impl Clone for UploadSessionFinishBatchResultEntry
Source§fn clone(&self) -> UploadSessionFinishBatchResultEntry
fn clone(&self) -> UploadSessionFinishBatchResultEntry
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<'de> Deserialize<'de> for UploadSessionFinishBatchResultEntry
impl<'de> Deserialize<'de> for UploadSessionFinishBatchResultEntry
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 for UploadSessionFinishBatchResultEntry
impl PartialEq for UploadSessionFinishBatchResultEntry
Source§fn eq(&self, other: &UploadSessionFinishBatchResultEntry) -> bool
fn eq(&self, other: &UploadSessionFinishBatchResultEntry) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UploadSessionFinishBatchResultEntry
Auto Trait Implementations§
impl Freeze for UploadSessionFinishBatchResultEntry
impl RefUnwindSafe for UploadSessionFinishBatchResultEntry
impl Send for UploadSessionFinishBatchResultEntry
impl Sync for UploadSessionFinishBatchResultEntry
impl Unpin for UploadSessionFinishBatchResultEntry
impl UnwindSafe for UploadSessionFinishBatchResultEntry
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