Enum swc_css_ast::MediaInParens
source · [−]pub enum MediaInParens {
MediaCondition(MediaCondition),
Feature(Box<MediaFeature>),
}
Variants
MediaCondition(MediaCondition)
Feature(Box<MediaFeature>)
Implementations
sourceimpl MediaInParens
impl MediaInParens
sourcepub fn is_media_condition(&self) -> bool
pub fn is_media_condition(&self) -> bool
Returns true
if self
is of variant MediaCondition
.
sourcepub fn as_media_condition(&self) -> Option<&MediaCondition>
pub fn as_media_condition(&self) -> Option<&MediaCondition>
Returns Some
if self
is a reference of variant MediaCondition
, and None
otherwise.
sourcepub fn as_mut_media_condition(&mut self) -> Option<&mut MediaCondition>
pub fn as_mut_media_condition(&mut self) -> Option<&mut MediaCondition>
Returns Some
if self
is a mutable reference of variant MediaCondition
, and None
otherwise.
sourcepub fn expect_media_condition(self) -> MediaConditionwhere
Self: Debug,
pub fn expect_media_condition(self) -> MediaConditionwhere
Self: Debug,
Unwraps the value, yielding the content of MediaCondition
.
Panics
Panics if the value is not MediaCondition
, with a panic message including the content of self
.
sourcepub fn media_condition(self) -> Option<MediaCondition>
pub fn media_condition(self) -> Option<MediaCondition>
Returns Some
if self
is of variant MediaCondition
, and None
otherwise.
sourcepub fn is_feature(&self) -> bool
pub fn is_feature(&self) -> bool
Returns true
if self
is of variant Feature
.
sourcepub fn as_feature(&self) -> Option<&Box<MediaFeature>>
pub fn as_feature(&self) -> Option<&Box<MediaFeature>>
Returns Some
if self
is a reference of variant Feature
, and None
otherwise.
sourcepub fn as_mut_feature(&mut self) -> Option<&mut Box<MediaFeature>>
pub fn as_mut_feature(&mut self) -> Option<&mut Box<MediaFeature>>
Returns Some
if self
is a mutable reference of variant Feature
, and None
otherwise.
sourcepub fn expect_feature(self) -> Box<MediaFeature>where
Self: Debug,
pub fn expect_feature(self) -> Box<MediaFeature>where
Self: Debug,
Trait Implementations
sourceimpl Clone for MediaInParens
impl Clone for MediaInParens
sourcefn clone(&self) -> MediaInParens
fn clone(&self) -> MediaInParens
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 MediaInParens
impl Debug for MediaInParens
sourceimpl<'de> Deserialize<'de> for MediaInParens
impl<'de> Deserialize<'de> for MediaInParens
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 MediaInParens
impl EqIgnoreSpan for MediaInParens
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<Box<MediaFeature, Global>> for MediaInParens
impl From<Box<MediaFeature, Global>> for MediaInParens
sourcefn from(v: Box<MediaFeature>) -> Self
fn from(v: Box<MediaFeature>) -> Self
Converts to this type from the input type.
sourceimpl From<MediaCondition> for MediaInParens
impl From<MediaCondition> for MediaInParens
sourcefn from(v: MediaCondition) -> Self
fn from(v: MediaCondition) -> Self
Converts to this type from the input type.
sourceimpl From<MediaInParens> for MediaConditionAllType
impl From<MediaInParens> for MediaConditionAllType
sourcefn from(v: MediaInParens) -> Self
fn from(v: MediaInParens) -> Self
Converts to this type from the input type.
sourceimpl From<MediaInParens> for MediaConditionWithoutOrType
impl From<MediaInParens> for MediaConditionWithoutOrType
sourcefn from(v: MediaInParens) -> Self
fn from(v: MediaInParens) -> Self
Converts to this type from the input type.
sourceimpl Hash for MediaInParens
impl Hash for MediaInParens
sourceimpl PartialEq<MediaInParens> for MediaInParens
impl PartialEq<MediaInParens> for MediaInParens
sourcefn eq(&self, other: &MediaInParens) -> bool
fn eq(&self, other: &MediaInParens) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for MediaInParens
impl Serialize for MediaInParens
sourceimpl Spanned for MediaInParens
impl Spanned for MediaInParens
impl Eq for MediaInParens
impl StructuralEq for MediaInParens
impl StructuralPartialEq for MediaInParens
Auto Trait Implementations
impl RefUnwindSafe for MediaInParens
impl Send for MediaInParens
impl Sync for MediaInParens
impl Unpin for MediaInParens
impl UnwindSafe for MediaInParens
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