pub struct PartitionedSearchConfig {
pub partition_count: Option<usize>,
pub termination: Option<TerminationConfig>,
}Expand description
Partitioned search configuration.
Fields§
§partition_count: Option<usize>Number of partitions.
termination: Option<TerminationConfig>Phase termination configuration.
Trait Implementations§
Source§impl Clone for PartitionedSearchConfig
impl Clone for PartitionedSearchConfig
Source§fn clone(&self) -> PartitionedSearchConfig
fn clone(&self) -> PartitionedSearchConfig
Returns a duplicate 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 PartitionedSearchConfig
impl Debug for PartitionedSearchConfig
Source§impl Default for PartitionedSearchConfig
impl Default for PartitionedSearchConfig
Source§fn default() -> PartitionedSearchConfig
fn default() -> PartitionedSearchConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartitionedSearchConfig
impl<'de> Deserialize<'de> for PartitionedSearchConfig
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 PartitionedSearchConfig
impl RefUnwindSafe for PartitionedSearchConfig
impl Send for PartitionedSearchConfig
impl Sync for PartitionedSearchConfig
impl Unpin for PartitionedSearchConfig
impl UnwindSafe for PartitionedSearchConfig
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