pub struct IndexStatus {Show 17 fields
pub database: String,
pub exists: bool,
pub schema: SchemaStatus,
pub git_commit: Option<String>,
pub git_dirty: Option<bool>,
pub indexed_at_ms: Option<i64>,
pub content_revision: String,
pub fts_synced_at_ms: Option<i64>,
pub fts_source_revision: Option<String>,
pub fts_dirty: bool,
pub fts_fresh: bool,
pub file_count_by_language: BTreeMap<String, u64>,
pub parser_failures: u64,
pub parser_failure_paths: Vec<ParserFailure>,
pub git_history: GitHistoryIndexStatus,
pub github: GitHubStatus,
pub local_ai: LocalAiStatus,
}Fields§
§database: String§exists: bool§schema: SchemaStatus§git_commit: Option<String>§git_dirty: Option<bool>§indexed_at_ms: Option<i64>§content_revision: String§fts_synced_at_ms: Option<i64>§fts_source_revision: Option<String>§fts_dirty: bool§fts_fresh: bool§file_count_by_language: BTreeMap<String, u64>§parser_failures: u64§parser_failure_paths: Vec<ParserFailure>§git_history: GitHistoryIndexStatus§github: GitHubStatus§local_ai: LocalAiStatusTrait Implementations§
Source§impl Debug for IndexStatus
impl Debug for IndexStatus
Auto Trait Implementations§
impl Freeze for IndexStatus
impl RefUnwindSafe for IndexStatus
impl Send for IndexStatus
impl Sync for IndexStatus
impl Unpin for IndexStatus
impl UnsafeUnpin for IndexStatus
impl UnwindSafe for IndexStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more