pub struct ReindexKnowledgeBaseResponse {
pub reindexed: bool,
pub total_chunks: i64,
pub embedded: i64,
pub documents: i64,
pub embedding_model: String,
pub embedding_dimensions: i64,
}Expand description
ReindexKnowledgeBaseResponse model.
Fields§
§reindexed: bool§total_chunks: i64§embedded: i64Chunks that came back with a vector. Lower than total_chunks means some failed.
documents: i64§embedding_model: String§embedding_dimensions: i64Trait Implementations§
Source§impl Clone for ReindexKnowledgeBaseResponse
impl Clone for ReindexKnowledgeBaseResponse
Source§fn clone(&self) -> ReindexKnowledgeBaseResponse
fn clone(&self) -> ReindexKnowledgeBaseResponse
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 ReindexKnowledgeBaseResponse
impl Debug for ReindexKnowledgeBaseResponse
Source§impl Default for ReindexKnowledgeBaseResponse
impl Default for ReindexKnowledgeBaseResponse
Source§fn default() -> ReindexKnowledgeBaseResponse
fn default() -> ReindexKnowledgeBaseResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReindexKnowledgeBaseResponse
impl<'de> Deserialize<'de> for ReindexKnowledgeBaseResponse
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
impl StructuralPartialEq for ReindexKnowledgeBaseResponse
Auto Trait Implementations§
impl Freeze for ReindexKnowledgeBaseResponse
impl RefUnwindSafe for ReindexKnowledgeBaseResponse
impl Send for ReindexKnowledgeBaseResponse
impl Sync for ReindexKnowledgeBaseResponse
impl Unpin for ReindexKnowledgeBaseResponse
impl UnsafeUnpin for ReindexKnowledgeBaseResponse
impl UnwindSafe for ReindexKnowledgeBaseResponse
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