pub struct BulkByScrollTaskStatusValue {Show 16 fields
pub throttled_until_millis: String,
pub requests_per_second: f64,
pub version_conflicts: u32,
pub noops: u32,
pub throttled_millis: String,
pub slices: Option<Vec<BulkByScrollTaskStatusOrException>>,
pub created: Option<u32>,
pub canceled: Option<String>,
pub throttled_until: Option<String>,
pub batches: u32,
pub slice_id: Option<u32>,
pub total: u32,
pub retries: Retries,
pub deleted: u32,
pub throttled: Option<String>,
pub updated: Option<u32>,
}Fields§
§throttled_until_millis: String§requests_per_second: f64The number of requests per second effectively executed during the reindex operation.
version_conflicts: u32The number of version conflicts encountered by the reindex operation.
noops: u32The number of documents that were ignored.
throttled_millis: String§slices: Option<Vec<BulkByScrollTaskStatusOrException>>§created: Option<u32>The number of documents that were successfully created.
canceled: Option<String>§throttled_until: Option<String>A duration. Units can be nanos, micros, ms (milliseconds), s (seconds), m (minutes), h (hours) and
d (days). Also accepts “0” without a unit and “-1” to indicate an unspecified value.
batches: u32The number of scroll responses pulled back by the reindex operation.
slice_id: Option<u32>§total: u32The number of documents that were successfully processed.
retries: Retries§deleted: u32The number of documents that were successfully deleted.
throttled: Option<String>A duration. Units can be nanos, micros, ms (milliseconds), s (seconds), m (minutes), h (hours) and
d (days). Also accepts “0” without a unit and “-1” to indicate an unspecified value.
updated: Option<u32>The number of documents that were successfully updated after the reindex operation.
Implementations§
Trait Implementations§
Source§impl Clone for BulkByScrollTaskStatusValue
impl Clone for BulkByScrollTaskStatusValue
Source§fn clone(&self) -> BulkByScrollTaskStatusValue
fn clone(&self) -> BulkByScrollTaskStatusValue
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BulkByScrollTaskStatusValue
impl Debug for BulkByScrollTaskStatusValue
Source§impl Default for BulkByScrollTaskStatusValue
impl Default for BulkByScrollTaskStatusValue
Source§fn default() -> BulkByScrollTaskStatusValue
fn default() -> BulkByScrollTaskStatusValue
Source§impl<'de> Deserialize<'de> for BulkByScrollTaskStatusValue
impl<'de> Deserialize<'de> for BulkByScrollTaskStatusValue
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>,
Source§impl PartialEq for BulkByScrollTaskStatusValue
impl PartialEq for BulkByScrollTaskStatusValue
Source§fn eq(&self, other: &BulkByScrollTaskStatusValue) -> bool
fn eq(&self, other: &BulkByScrollTaskStatusValue) -> bool
self and other values to be equal, and is used by ==.