pub struct BatchIndexResult {
pub indexed: usize,
pub failed: usize,
pub errors: Vec<String>,
}Expand description
Result of batch indexing operation
Fields§
§indexed: usize§failed: usize§errors: Vec<String>Trait Implementations§
Source§impl Clone for BatchIndexResult
impl Clone for BatchIndexResult
Source§fn clone(&self) -> BatchIndexResult
fn clone(&self) -> BatchIndexResult
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 moreSource§impl Debug for BatchIndexResult
impl Debug for BatchIndexResult
Source§impl<'de> Deserialize<'de> for BatchIndexResult
impl<'de> Deserialize<'de> for BatchIndexResult
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 BatchIndexResult
impl RefUnwindSafe for BatchIndexResult
impl Send for BatchIndexResult
impl Sync for BatchIndexResult
impl Unpin for BatchIndexResult
impl UnsafeUnpin for BatchIndexResult
impl UnwindSafe for BatchIndexResult
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