pub enum DeleteBatchResultEntry {
Success(DeleteBatchResultData),
Failure(DeleteError),
}
Available on crate features
sync_routes
and dbx_files
only.Variants§
Success(DeleteBatchResultData)
Failure(DeleteError)
Trait Implementations§
Source§impl Clone for DeleteBatchResultEntry
impl Clone for DeleteBatchResultEntry
Source§fn clone(&self) -> DeleteBatchResultEntry
fn clone(&self) -> DeleteBatchResultEntry
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 DeleteBatchResultEntry
impl Debug for DeleteBatchResultEntry
Source§impl<'de> Deserialize<'de> for DeleteBatchResultEntry
impl<'de> Deserialize<'de> for DeleteBatchResultEntry
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 DeleteBatchResultEntry
impl PartialEq for DeleteBatchResultEntry
Source§impl Serialize for DeleteBatchResultEntry
impl Serialize for DeleteBatchResultEntry
impl StructuralPartialEq for DeleteBatchResultEntry
Auto Trait Implementations§
impl Freeze for DeleteBatchResultEntry
impl RefUnwindSafe for DeleteBatchResultEntry
impl Send for DeleteBatchResultEntry
impl Sync for DeleteBatchResultEntry
impl Unpin for DeleteBatchResultEntry
impl UnwindSafe for DeleteBatchResultEntry
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