pub struct SelectorSet {
pub include: Vec<Selector>,
pub exclude: Vec<Selector>,
}Expand description
Include and exclude selectors applied before execution begins.
Fields§
§include: Vec<Selector>§exclude: Vec<Selector>Trait Implementations§
Source§impl Clone for SelectorSet
impl Clone for SelectorSet
Source§fn clone(&self) -> SelectorSet
fn clone(&self) -> SelectorSet
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 SelectorSet
impl Debug for SelectorSet
Source§impl Default for SelectorSet
impl Default for SelectorSet
Source§fn default() -> SelectorSet
fn default() -> SelectorSet
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SelectorSet
impl RefUnwindSafe for SelectorSet
impl Send for SelectorSet
impl Sync for SelectorSet
impl Unpin for SelectorSet
impl UnsafeUnpin for SelectorSet
impl UnwindSafe for SelectorSet
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