pub struct Selection {
pub keys: Vec<&'static str>,
pub unmatched_patterns: Vec<String>,
}Expand description
Result of a selection (match of a list of selectors).
Fields§
§keys: Vec<&'static str>Registry keys that matched.
unmatched_patterns: Vec<String>Patterns that matched no key.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Selection
impl RefUnwindSafe for Selection
impl Send for Selection
impl Sync for Selection
impl Unpin for Selection
impl UnsafeUnpin for Selection
impl UnwindSafe for Selection
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