pub struct IndexStatusDescription {
pub waiting: Vec<Value>,
pub crashed: Vec<Value>,
pub host: Option<String>,
pub port: usize,
pub state: DescribeStatusState,
pub ready: bool,
}
Expand description
Describes the Status of an Index
Fields§
§waiting: Vec<Value>
The index is waiting on some kind of operation.
crashed: Vec<Value>
Index has crashed.
host: Option<String>
The host url of the index.
port: usize
The port of the index.
state: DescribeStatusState
Indexes state
ready: bool
Whether the Index is ready or not.
Trait Implementations§
Source§impl Clone for IndexStatusDescription
impl Clone for IndexStatusDescription
Source§fn clone(&self) -> IndexStatusDescription
fn clone(&self) -> IndexStatusDescription
Returns a copy 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 IndexStatusDescription
impl Debug for IndexStatusDescription
Source§impl Default for IndexStatusDescription
impl Default for IndexStatusDescription
Source§fn default() -> IndexStatusDescription
fn default() -> IndexStatusDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexStatusDescription
impl<'de> Deserialize<'de> for IndexStatusDescription
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 IndexStatusDescription
impl RefUnwindSafe for IndexStatusDescription
impl Send for IndexStatusDescription
impl Sync for IndexStatusDescription
impl Unpin for IndexStatusDescription
impl UnwindSafe for IndexStatusDescription
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