Struct swc_css_ast::ForgivingSelectorList
source · pub struct ForgivingSelectorList {
pub span: Span,
pub children: Vec<ForgivingComplexSelector>,
}
Fields§
§span: Span
§children: Vec<ForgivingComplexSelector>
Trait Implementations§
source§impl Clone for ForgivingSelectorList
impl Clone for ForgivingSelectorList
source§fn clone(&self) -> ForgivingSelectorList
fn clone(&self) -> ForgivingSelectorList
Returns a copy 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 ForgivingSelectorList
impl Debug for ForgivingSelectorList
source§impl EqIgnoreSpan for ForgivingSelectorList
impl EqIgnoreSpan for ForgivingSelectorList
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<ForgivingSelectorList> for PseudoClassSelectorChildren
impl From<ForgivingSelectorList> for PseudoClassSelectorChildren
source§fn from(v: ForgivingSelectorList) -> Self
fn from(v: ForgivingSelectorList) -> Self
Converts to this type from the input type.
source§impl Hash for ForgivingSelectorList
impl Hash for ForgivingSelectorList
source§impl PartialEq for ForgivingSelectorList
impl PartialEq for ForgivingSelectorList
source§impl Spanned for ForgivingSelectorList
impl Spanned for ForgivingSelectorList
impl Eq for ForgivingSelectorList
impl StructuralPartialEq for ForgivingSelectorList
Auto Trait Implementations§
impl Freeze for ForgivingSelectorList
impl RefUnwindSafe for ForgivingSelectorList
impl Send for ForgivingSelectorList
impl Sync for ForgivingSelectorList
impl Unpin for ForgivingSelectorList
impl UnwindSafe for ForgivingSelectorList
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more