pub struct SearchIndexStatus {Show 14 fields
pub server: String,
pub state: SearchIndexState,
pub auto_refresh_enabled: bool,
pub active_generation: u64,
pub entry_count: u64,
pub unique_item_count: u64,
pub started_at: Option<String>,
pub completed_at: Option<String>,
pub last_error: Option<String>,
pub database_bytes: u64,
pub organization: NamespaceOrganization,
pub source: BrowseSource,
pub progress: Option<IndexedSearchProgress>,
pub scheduler: IndexSchedulerDiagnostics,
}Expand description
Persistent namespace-index state and build metadata.
Fields§
§server: String§state: SearchIndexState§auto_refresh_enabled: bool§active_generation: u64§entry_count: u64§unique_item_count: u64§started_at: Option<String>§completed_at: Option<String>§last_error: Option<String>§database_bytes: u64§organization: NamespaceOrganization§source: BrowseSource§progress: Option<IndexedSearchProgress>§scheduler: IndexSchedulerDiagnosticsTrait Implementations§
Source§impl Clone for SearchIndexStatus
impl Clone for SearchIndexStatus
Source§fn clone(&self) -> SearchIndexStatus
fn clone(&self) -> SearchIndexStatus
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 SearchIndexStatus
impl Debug for SearchIndexStatus
Source§impl PartialEq for SearchIndexStatus
impl PartialEq for SearchIndexStatus
Source§fn eq(&self, other: &SearchIndexStatus) -> bool
fn eq(&self, other: &SearchIndexStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchIndexStatus
Auto Trait Implementations§
impl Freeze for SearchIndexStatus
impl RefUnwindSafe for SearchIndexStatus
impl Send for SearchIndexStatus
impl Sync for SearchIndexStatus
impl Unpin for SearchIndexStatus
impl UnsafeUnpin for SearchIndexStatus
impl UnwindSafe for SearchIndexStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].