pub enum CombinatorType {
Descendant,
Child,
AdjacentSibling,
GeneralSibling,
}Expand description
Combinator types
Variants§
Descendant
Descendant combinator (space)
Child
Child combinator (>)
AdjacentSibling
Adjacent sibling combinator (+)
GeneralSibling
General sibling combinator (~)
Trait Implementations§
Source§impl Clone for CombinatorType
impl Clone for CombinatorType
Source§fn clone(&self) -> CombinatorType
fn clone(&self) -> CombinatorType
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 CombinatorType
impl Debug for CombinatorType
Source§impl<'de> Deserialize<'de> for CombinatorType
impl<'de> Deserialize<'de> for CombinatorType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CombinatorType
impl PartialEq for CombinatorType
Source§impl Serialize for CombinatorType
impl Serialize for CombinatorType
impl StructuralPartialEq for CombinatorType
Auto Trait Implementations§
impl Freeze for CombinatorType
impl RefUnwindSafe for CombinatorType
impl Send for CombinatorType
impl Sync for CombinatorType
impl Unpin for CombinatorType
impl UnwindSafe for CombinatorType
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