pub struct StatusResponse {
pub indexed: bool,
pub project: String,
pub index_dir: String,
pub chunks: Option<usize>,
pub embedding_dim: Option<usize>,
pub version: Option<u32>,
pub error: Option<String>,
pub message: Option<String>,
}Expand description
Response for GET /status.
Fields§
§indexed: bool§project: String§index_dir: String§chunks: Option<usize>§embedding_dim: Option<usize>§version: Option<u32>§error: Option<String>§message: Option<String>Trait Implementations§
Source§impl Debug for StatusResponse
impl Debug for StatusResponse
Auto Trait Implementations§
impl Freeze for StatusResponse
impl RefUnwindSafe for StatusResponse
impl Send for StatusResponse
impl Sync for StatusResponse
impl Unpin for StatusResponse
impl UnsafeUnpin for StatusResponse
impl UnwindSafe for StatusResponse
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