Enum swc_css_ast::SupportsFeature
source · [−]pub enum SupportsFeature {
Declaration(Box<Declaration>),
Function(Function),
}
Variants
Declaration(Box<Declaration>)
Function(Function)
Implementations
sourceimpl SupportsFeature
impl SupportsFeature
sourcepub fn is_declaration(&self) -> bool
pub fn is_declaration(&self) -> bool
Returns true
if self
is of variant Declaration
.
sourcepub fn as_declaration(&self) -> Option<&Box<Declaration>>
pub fn as_declaration(&self) -> Option<&Box<Declaration>>
Returns Some
if self
is a reference of variant Declaration
, and None
otherwise.
sourcepub fn as_mut_declaration(&mut self) -> Option<&mut Box<Declaration>>
pub fn as_mut_declaration(&mut self) -> Option<&mut Box<Declaration>>
Returns Some
if self
is a mutable reference of variant Declaration
, and None
otherwise.
sourcepub fn expect_declaration(self) -> Box<Declaration>where
Self: Debug,
pub fn expect_declaration(self) -> Box<Declaration>where
Self: Debug,
Unwraps the value, yielding the content of Declaration
.
Panics
Panics if the value is not Declaration
, with a panic message including the content of self
.
sourcepub fn declaration(self) -> Option<Box<Declaration>>
pub fn declaration(self) -> Option<Box<Declaration>>
Returns Some
if self
is of variant Declaration
, and None
otherwise.
sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Returns true
if self
is of variant Function
.
sourcepub fn as_function(&self) -> Option<&Function>
pub fn as_function(&self) -> Option<&Function>
Returns Some
if self
is a reference of variant Function
, and None
otherwise.
sourcepub fn as_mut_function(&mut self) -> Option<&mut Function>
pub fn as_mut_function(&mut self) -> Option<&mut Function>
Returns Some
if self
is a mutable reference of variant Function
, and None
otherwise.
sourcepub fn expect_function(self) -> Functionwhere
Self: Debug,
pub fn expect_function(self) -> Functionwhere
Self: Debug,
Trait Implementations
sourceimpl Clone for SupportsFeature
impl Clone for SupportsFeature
sourcefn clone(&self) -> SupportsFeature
fn clone(&self) -> SupportsFeature
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 SupportsFeature
impl Debug for SupportsFeature
sourceimpl<'de> Deserialize<'de> for SupportsFeature
impl<'de> Deserialize<'de> for SupportsFeature
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 SupportsFeature
impl EqIgnoreSpan for SupportsFeature
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<Box<Declaration, Global>> for SupportsFeature
impl From<Box<Declaration, Global>> for SupportsFeature
sourcefn from(v: Box<Declaration>) -> Self
fn from(v: Box<Declaration>) -> Self
Converts to this type from the input type.
sourceimpl From<Function> for SupportsFeature
impl From<Function> for SupportsFeature
sourceimpl From<SupportsFeature> for SupportsInParens
impl From<SupportsFeature> for SupportsInParens
sourcefn from(v: SupportsFeature) -> Self
fn from(v: SupportsFeature) -> Self
Converts to this type from the input type.
sourceimpl Hash for SupportsFeature
impl Hash for SupportsFeature
sourceimpl PartialEq<SupportsFeature> for SupportsFeature
impl PartialEq<SupportsFeature> for SupportsFeature
sourcefn eq(&self, other: &SupportsFeature) -> bool
fn eq(&self, other: &SupportsFeature) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for SupportsFeature
impl Serialize for SupportsFeature
sourceimpl Spanned for SupportsFeature
impl Spanned for SupportsFeature
impl Eq for SupportsFeature
impl StructuralEq for SupportsFeature
impl StructuralPartialEq for SupportsFeature
Auto Trait Implementations
impl RefUnwindSafe for SupportsFeature
impl Send for SupportsFeature
impl Sync for SupportsFeature
impl Unpin for SupportsFeature
impl UnwindSafe for SupportsFeature
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