pub struct CssSelectorPart { /* private fields */ }Expand description
A structure representing a part of the CSS selector.
Implementations§
Source§impl CssSelectorPart
impl CssSelectorPart
Trait Implementations§
Source§impl Clone for CssSelectorPart
impl Clone for CssSelectorPart
Source§fn clone(&self) -> CssSelectorPart
fn clone(&self) -> CssSelectorPart
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 CssSelectorPart
impl Debug for CssSelectorPart
Source§impl Default for CssSelectorPart
impl Default for CssSelectorPart
Source§fn default() -> CssSelectorPart
fn default() -> CssSelectorPart
Returns the “default value” for a type. Read more
Source§impl Display for CssSelectorPart
impl Display for CssSelectorPart
Source§impl From<&[&str]> for CssSelectorPart
impl From<&[&str]> for CssSelectorPart
Source§fn from(value: &[&str]) -> Self
fn from(value: &[&str]) -> Self
Creates CssSelectorPart from a collection of strings.
Source§impl From<&str> for CssSelectorPart
impl From<&str> for CssSelectorPart
Source§fn from(value: &str) -> Self
fn from(value: &str) -> Self
Creates CssSelectorPart from single string.
Source§impl From<CssSelectorPart> for CssSelector
impl From<CssSelectorPart> for CssSelector
Source§fn from(value: CssSelectorPart) -> Self
fn from(value: CssSelectorPart) -> Self
Creates CssSelector from CssSelectorPart.
Auto Trait Implementations§
impl Freeze for CssSelectorPart
impl RefUnwindSafe for CssSelectorPart
impl Send for CssSelectorPart
impl Sync for CssSelectorPart
impl Unpin for CssSelectorPart
impl UnwindSafe for CssSelectorPart
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