Struct swc_css_ast::LayerNameList
source · pub struct LayerNameList {
pub span: Span,
pub name_list: Vec<LayerName>,
}
Fields§
§span: Span
§name_list: Vec<LayerName>
Trait Implementations§
source§impl Clone for LayerNameList
impl Clone for LayerNameList
source§fn clone(&self) -> LayerNameList
fn clone(&self) -> LayerNameList
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 LayerNameList
impl Debug for LayerNameList
source§impl EqIgnoreSpan for LayerNameList
impl EqIgnoreSpan for LayerNameList
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<LayerNameList> for LayerPrelude
impl From<LayerNameList> for LayerPrelude
source§fn from(v: LayerNameList) -> Self
fn from(v: LayerNameList) -> Self
Converts to this type from the input type.
source§impl Hash for LayerNameList
impl Hash for LayerNameList
source§impl PartialEq for LayerNameList
impl PartialEq for LayerNameList
source§impl Spanned for LayerNameList
impl Spanned for LayerNameList
impl Eq for LayerNameList
impl StructuralPartialEq for LayerNameList
Auto Trait Implementations§
impl Freeze for LayerNameList
impl RefUnwindSafe for LayerNameList
impl Send for LayerNameList
impl Sync for LayerNameList
impl Unpin for LayerNameList
impl UnwindSafe for LayerNameList
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