pub struct MatchControlsByPattern {
pub pattern: Option<String>,
}Expand description
Selecting a set of controls by matching their IDs with a wildcard pattern.
Fields§
§pattern: Option<String>A glob expression matching the IDs of one or more controls to be selected.
Trait Implementations§
Source§impl Clone for MatchControlsByPattern
impl Clone for MatchControlsByPattern
Source§fn clone(&self) -> MatchControlsByPattern
fn clone(&self) -> MatchControlsByPattern
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 MatchControlsByPattern
impl Debug for MatchControlsByPattern
Source§impl<'de> Deserialize<'de> for MatchControlsByPattern
impl<'de> Deserialize<'de> for MatchControlsByPattern
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
Source§impl Display for MatchControlsByPattern
impl Display for MatchControlsByPattern
Source§impl From<&MatchControlsByPattern> for MatchControlsByPattern
impl From<&MatchControlsByPattern> for MatchControlsByPattern
Source§fn from(value: &MatchControlsByPattern) -> Self
fn from(value: &MatchControlsByPattern) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MatchControlsByPattern
impl PartialEq for MatchControlsByPattern
Auto Trait Implementations§
impl Freeze for MatchControlsByPattern
impl RefUnwindSafe for MatchControlsByPattern
impl Send for MatchControlsByPattern
impl Sync for MatchControlsByPattern
impl Unpin for MatchControlsByPattern
impl UnwindSafe for MatchControlsByPattern
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