pub struct FixedDatabaseRegexRule {
pub ordinal: i32,
pub pattern: String,
}Expand description
A single regex rule within a fixed database’s clustering policy.
Fields§
§ordinal: i32Order of this rule.
pattern: StringRegex pattern.
Trait Implementations§
Source§impl Clone for FixedDatabaseRegexRule
impl Clone for FixedDatabaseRegexRule
Source§fn clone(&self) -> FixedDatabaseRegexRule
fn clone(&self) -> FixedDatabaseRegexRule
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 FixedDatabaseRegexRule
impl Debug for FixedDatabaseRegexRule
Source§impl<'de> Deserialize<'de> for FixedDatabaseRegexRule
impl<'de> Deserialize<'de> for FixedDatabaseRegexRule
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 FixedDatabaseRegexRule
impl RefUnwindSafe for FixedDatabaseRegexRule
impl Send for FixedDatabaseRegexRule
impl Sync for FixedDatabaseRegexRule
impl Unpin for FixedDatabaseRegexRule
impl UnsafeUnpin for FixedDatabaseRegexRule
impl UnwindSafe for FixedDatabaseRegexRule
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