pub struct FixedDatabaseClustering {
pub enabled: Option<bool>,
pub regex_rules: Option<Vec<FixedDatabaseRegexRule>>,
pub hashing_policy: Option<String>,
}Expand description
Clustering configuration returned within a FixedDatabase read response
(nested clustering object).
Fields§
§enabled: Option<bool>Whether clustering is enabled.
regex_rules: Option<Vec<FixedDatabaseRegexRule>>Regex rules for the custom hashing policy.
hashing_policy: Option<String>Hashing policy (e.g. "standard").
Trait Implementations§
Source§impl Clone for FixedDatabaseClustering
impl Clone for FixedDatabaseClustering
Source§fn clone(&self) -> FixedDatabaseClustering
fn clone(&self) -> FixedDatabaseClustering
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 FixedDatabaseClustering
impl Debug for FixedDatabaseClustering
Source§impl<'de> Deserialize<'de> for FixedDatabaseClustering
impl<'de> Deserialize<'de> for FixedDatabaseClustering
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 FixedDatabaseClustering
impl RefUnwindSafe for FixedDatabaseClustering
impl Send for FixedDatabaseClustering
impl Sync for FixedDatabaseClustering
impl Unpin for FixedDatabaseClustering
impl UnsafeUnpin for FixedDatabaseClustering
impl UnwindSafe for FixedDatabaseClustering
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