pub struct SimpleSelector {
pub id: Option<String>,
pub class: Vec<String>,
pub tag_name: Option<String>,
}
Fields§
§id: Option<String>
§class: Vec<String>
§tag_name: Option<String>
Trait Implementations§
Source§impl Clone for SimpleSelector
impl Clone for SimpleSelector
Source§fn clone(&self) -> SimpleSelector
fn clone(&self) -> SimpleSelector
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SimpleSelector
impl Debug for SimpleSelector
Source§impl Default for SimpleSelector
impl Default for SimpleSelector
Source§fn default() -> SimpleSelector
fn default() -> SimpleSelector
Returns the “default value” for a type. Read more
Source§impl PartialEq for SimpleSelector
impl PartialEq for SimpleSelector
impl StructuralPartialEq for SimpleSelector
Auto Trait Implementations§
impl Freeze for SimpleSelector
impl RefUnwindSafe for SimpleSelector
impl Send for SimpleSelector
impl Sync for SimpleSelector
impl Unpin for SimpleSelector
impl UnwindSafe for SimpleSelector
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