pub struct BatchUpdateResult {
pub succeeded: u64,
pub failed: u64,
pub errors: HashMap<usize, String>,
}Expand description
Result of applying a batch update.
Fields§
§succeeded: u64Number of operations that succeeded.
failed: u64Number of operations that failed.
errors: HashMap<usize, String>Errors for failed operations (index -> error).
Trait Implementations§
Source§impl Clone for BatchUpdateResult
impl Clone for BatchUpdateResult
Source§fn clone(&self) -> BatchUpdateResult
fn clone(&self) -> BatchUpdateResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchUpdateResult
impl Debug for BatchUpdateResult
Source§impl<'de> Deserialize<'de> for BatchUpdateResult
impl<'de> Deserialize<'de> for BatchUpdateResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BatchUpdateResult
impl RefUnwindSafe for BatchUpdateResult
impl Send for BatchUpdateResult
impl Sync for BatchUpdateResult
impl Unpin for BatchUpdateResult
impl UnsafeUnpin for BatchUpdateResult
impl UnwindSafe for BatchUpdateResult
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