pub struct Builder { /* private fields */ }
Expand description
A builder for OptionRestrictionRegex
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn pattern(self, input: impl Into<String>) -> Self
pub fn pattern(self, input: impl Into<String>) -> Self
The regular expression pattern that a string configuration option value with this restriction must match.
sourcepub fn set_pattern(self, input: Option<String>) -> Self
pub fn set_pattern(self, input: Option<String>) -> Self
The regular expression pattern that a string configuration option value with this restriction must match.
sourcepub fn label(self, input: impl Into<String>) -> Self
pub fn label(self, input: impl Into<String>) -> Self
A unique name representing this regular expression.
sourcepub fn set_label(self, input: Option<String>) -> Self
pub fn set_label(self, input: Option<String>) -> Self
A unique name representing this regular expression.
sourcepub fn build(self) -> OptionRestrictionRegex
pub fn build(self) -> OptionRestrictionRegex
Consumes the builder and constructs a OptionRestrictionRegex
.