pub struct SelectorConfiguration {
pub root_selector: Option<String>,
pub exclude_selector: Option<String>,
}Expand description
Select elements to show or hide using a CSS selector.
Fields§
§root_selector: Option<String>The root html selector.
exclude_selector: Option<String>Exclude the matching css selector from the output.
Trait Implementations§
Source§impl Clone for SelectorConfiguration
impl Clone for SelectorConfiguration
Source§fn clone(&self) -> SelectorConfiguration
fn clone(&self) -> SelectorConfiguration
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 SelectorConfiguration
impl Debug for SelectorConfiguration
Source§impl Default for SelectorConfiguration
impl Default for SelectorConfiguration
Source§fn default() -> SelectorConfiguration
fn default() -> SelectorConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SelectorConfiguration
impl RefUnwindSafe for SelectorConfiguration
impl Send for SelectorConfiguration
impl Sync for SelectorConfiguration
impl Unpin for SelectorConfiguration
impl UnsafeUnpin for SelectorConfiguration
impl UnwindSafe for SelectorConfiguration
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