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