Enum swc_css_ast::QualifiedRulePrelude
source · [−]pub enum QualifiedRulePrelude {
ListOfComponentValues(ListOfComponentValues),
SelectorList(SelectorList),
}
Variants
ListOfComponentValues(ListOfComponentValues)
SelectorList(SelectorList)
Implementations
sourceimpl QualifiedRulePrelude
impl QualifiedRulePrelude
sourcepub fn is_list_of_component_values(&self) -> bool
pub fn is_list_of_component_values(&self) -> bool
Returns true
if self
is of variant ListOfComponentValues
.
sourcepub fn as_list_of_component_values(&self) -> Option<&ListOfComponentValues>
pub fn as_list_of_component_values(&self) -> Option<&ListOfComponentValues>
Returns Some
if self
is a reference of variant ListOfComponentValues
, and None
otherwise.
sourcepub fn as_mut_list_of_component_values(
&mut self
) -> Option<&mut ListOfComponentValues>
pub fn as_mut_list_of_component_values(
&mut self
) -> Option<&mut ListOfComponentValues>
Returns Some
if self
is a mutable reference of variant ListOfComponentValues
, and None
otherwise.
sourcepub fn expect_list_of_component_values(self) -> ListOfComponentValueswhere
Self: Debug,
pub fn expect_list_of_component_values(self) -> ListOfComponentValueswhere
Self: Debug,
Unwraps the value, yielding the content of ListOfComponentValues
.
Panics
Panics if the value is not ListOfComponentValues
, with a panic message including the content of self
.
sourcepub fn list_of_component_values(self) -> Option<ListOfComponentValues>
pub fn list_of_component_values(self) -> Option<ListOfComponentValues>
Returns Some
if self
is of variant ListOfComponentValues
, and None
otherwise.
sourcepub fn is_selector_list(&self) -> bool
pub fn is_selector_list(&self) -> bool
Returns true
if self
is of variant SelectorList
.
sourcepub fn as_selector_list(&self) -> Option<&SelectorList>
pub fn as_selector_list(&self) -> Option<&SelectorList>
Returns Some
if self
is a reference of variant SelectorList
, and None
otherwise.
sourcepub fn as_mut_selector_list(&mut self) -> Option<&mut SelectorList>
pub fn as_mut_selector_list(&mut self) -> Option<&mut SelectorList>
Returns Some
if self
is a mutable reference of variant SelectorList
, and None
otherwise.
sourcepub fn expect_selector_list(self) -> SelectorListwhere
Self: Debug,
pub fn expect_selector_list(self) -> SelectorListwhere
Self: Debug,
Unwraps the value, yielding the content of SelectorList
.
Panics
Panics if the value is not SelectorList
, with a panic message including the content of self
.
sourcepub fn selector_list(self) -> Option<SelectorList>
pub fn selector_list(self) -> Option<SelectorList>
Returns Some
if self
is of variant SelectorList
, and None
otherwise.
Trait Implementations
sourceimpl Clone for QualifiedRulePrelude
impl Clone for QualifiedRulePrelude
sourcefn clone(&self) -> QualifiedRulePrelude
fn clone(&self) -> QualifiedRulePrelude
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for QualifiedRulePrelude
impl Debug for QualifiedRulePrelude
sourceimpl<'de> Deserialize<'de> for QualifiedRulePrelude
impl<'de> Deserialize<'de> for QualifiedRulePrelude
sourcefn 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
sourceimpl EqIgnoreSpan for QualifiedRulePrelude
impl EqIgnoreSpan for QualifiedRulePrelude
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<ListOfComponentValues> for QualifiedRulePrelude
impl From<ListOfComponentValues> for QualifiedRulePrelude
sourcefn from(v: ListOfComponentValues) -> Self
fn from(v: ListOfComponentValues) -> Self
Converts to this type from the input type.
sourceimpl From<SelectorList> for QualifiedRulePrelude
impl From<SelectorList> for QualifiedRulePrelude
sourcefn from(v: SelectorList) -> Self
fn from(v: SelectorList) -> Self
Converts to this type from the input type.
sourceimpl Hash for QualifiedRulePrelude
impl Hash for QualifiedRulePrelude
sourceimpl PartialEq<QualifiedRulePrelude> for QualifiedRulePrelude
impl PartialEq<QualifiedRulePrelude> for QualifiedRulePrelude
sourcefn eq(&self, other: &QualifiedRulePrelude) -> bool
fn eq(&self, other: &QualifiedRulePrelude) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for QualifiedRulePrelude
impl Serialize for QualifiedRulePrelude
sourceimpl Spanned for QualifiedRulePrelude
impl Spanned for QualifiedRulePrelude
impl Eq for QualifiedRulePrelude
impl StructuralEq for QualifiedRulePrelude
impl StructuralPartialEq for QualifiedRulePrelude
Auto Trait Implementations
impl RefUnwindSafe for QualifiedRulePrelude
impl Send for QualifiedRulePrelude
impl Sync for QualifiedRulePrelude
impl Unpin for QualifiedRulePrelude
impl UnwindSafe for QualifiedRulePrelude
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more