pub enum CreateFolderBatchResultEntry {
Success(CreateFolderEntryResult),
Failure(CreateFolderEntryError),
}
Available on crate feature
dbx_files
only.Variants
Success(CreateFolderEntryResult)
Failure(CreateFolderEntryError)
Trait Implementations
sourceimpl Clone for CreateFolderBatchResultEntry
impl Clone for CreateFolderBatchResultEntry
sourcefn clone(&self) -> CreateFolderBatchResultEntry
fn clone(&self) -> CreateFolderBatchResultEntry
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 CreateFolderBatchResultEntry
impl Debug for CreateFolderBatchResultEntry
sourceimpl<'de> Deserialize<'de> for CreateFolderBatchResultEntry
impl<'de> Deserialize<'de> for CreateFolderBatchResultEntry
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<CreateFolderBatchResultEntry> for CreateFolderBatchResultEntry
impl PartialEq<CreateFolderBatchResultEntry> for CreateFolderBatchResultEntry
sourcefn eq(&self, other: &CreateFolderBatchResultEntry) -> bool
fn eq(&self, other: &CreateFolderBatchResultEntry) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateFolderBatchResultEntry) -> bool
fn ne(&self, other: &CreateFolderBatchResultEntry) -> bool
This method tests for !=
.
impl Eq for CreateFolderBatchResultEntry
impl StructuralEq for CreateFolderBatchResultEntry
impl StructuralPartialEq for CreateFolderBatchResultEntry
Auto Trait Implementations
impl RefUnwindSafe for CreateFolderBatchResultEntry
impl Send for CreateFolderBatchResultEntry
impl Sync for CreateFolderBatchResultEntry
impl Unpin for CreateFolderBatchResultEntry
impl UnwindSafe for CreateFolderBatchResultEntry
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