pub struct DeleteResult {
pub deleted: u64,
pub epoch: u32,
}Expand description
Result of a delete operation.
Fields§
§deleted: u64Number of vectors soft-deleted.
epoch: u32Manifest epoch after the delete commit.
Trait Implementations§
Source§impl Clone for DeleteResult
impl Clone for DeleteResult
Source§fn clone(&self) -> DeleteResult
fn clone(&self) -> DeleteResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for DeleteResult
impl RefUnwindSafe for DeleteResult
impl Send for DeleteResult
impl Sync for DeleteResult
impl Unpin for DeleteResult
impl UnwindSafe for DeleteResult
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