pub enum MediaFeatureName {
Ident(Ident),
ExtensionName(ExtensionName),
}Variants§
Ident(Ident)
ExtensionName(ExtensionName)
Implementations§
Source§impl MediaFeatureName
impl MediaFeatureName
Sourcepub fn as_ident(&self) -> Option<&Ident>
pub fn as_ident(&self) -> Option<&Ident>
Returns Some if self is a reference of variant Ident, and None otherwise.
Sourcepub fn as_mut_ident(&mut self) -> Option<&mut Ident>
pub fn as_mut_ident(&mut self) -> Option<&mut Ident>
Returns Some if self is a mutable reference of variant Ident, and None otherwise.
Sourcepub fn expect_ident(self) -> Identwhere
Self: Debug,
pub fn expect_ident(self) -> Identwhere
Self: Debug,
Sourcepub fn ident(self) -> Option<Ident>
pub fn ident(self) -> Option<Ident>
Returns Some if self is of variant Ident, and None otherwise.
Sourcepub const fn is_extension_name(&self) -> bool
pub const fn is_extension_name(&self) -> bool
Returns true if self is of variant ExtensionName.
Sourcepub fn as_extension_name(&self) -> Option<&ExtensionName>
pub fn as_extension_name(&self) -> Option<&ExtensionName>
Returns Some if self is a reference of variant ExtensionName, and None otherwise.
Sourcepub fn as_mut_extension_name(&mut self) -> Option<&mut ExtensionName>
pub fn as_mut_extension_name(&mut self) -> Option<&mut ExtensionName>
Returns Some if self is a mutable reference of variant ExtensionName, and None otherwise.
Sourcepub fn expect_extension_name(self) -> ExtensionNamewhere
Self: Debug,
pub fn expect_extension_name(self) -> ExtensionNamewhere
Self: Debug,
Unwraps the value, yielding the content of ExtensionName.
§Panics
Panics if the value is not ExtensionName, with a panic message including the content of self.
Sourcepub fn extension_name(self) -> Option<ExtensionName>
pub fn extension_name(self) -> Option<ExtensionName>
Returns Some if self is of variant ExtensionName, and None otherwise.
Trait Implementations§
Source§impl Clone for MediaFeatureName
impl Clone for MediaFeatureName
Source§fn clone(&self) -> MediaFeatureName
fn clone(&self) -> MediaFeatureName
Returns a duplicate 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 MediaFeatureName
impl Debug for MediaFeatureName
Source§impl EqIgnoreSpan for MediaFeatureName
impl EqIgnoreSpan for MediaFeatureName
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl From<ExtensionName> for MediaFeatureName
impl From<ExtensionName> for MediaFeatureName
Source§fn from(v: ExtensionName) -> Self
fn from(v: ExtensionName) -> Self
Converts to this type from the input type.
Source§impl From<Ident> for MediaFeatureName
impl From<Ident> for MediaFeatureName
Source§impl Hash for MediaFeatureName
impl Hash for MediaFeatureName
Source§impl PartialEq for MediaFeatureName
impl PartialEq for MediaFeatureName
Source§impl Spanned for MediaFeatureName
impl Spanned for MediaFeatureName
impl Eq for MediaFeatureName
impl StructuralPartialEq for MediaFeatureName
Auto Trait Implementations§
impl Freeze for MediaFeatureName
impl RefUnwindSafe for MediaFeatureName
impl Send for MediaFeatureName
impl Sync for MediaFeatureName
impl Unpin for MediaFeatureName
impl UnwindSafe for MediaFeatureName
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§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