pub enum AnyPointerMediaFeature {
WithValue(LeftParen, Ident, Colon, AnyPointerMediaFeatureKeyword, RightParen),
Bare(LeftParen, Ident, RightParen),
}Variants§
WithValue(LeftParen, Ident, Colon, AnyPointerMediaFeatureKeyword, RightParen)
Bare(LeftParen, Ident, RightParen)
Trait Implementations§
Source§impl Clone for AnyPointerMediaFeature
impl Clone for AnyPointerMediaFeature
Source§fn clone(&self) -> AnyPointerMediaFeature
fn clone(&self) -> AnyPointerMediaFeature
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 AnyPointerMediaFeature
impl Debug for AnyPointerMediaFeature
Source§impl<'a> DiscreteFeature<'a> for AnyPointerMediaFeature
impl<'a> DiscreteFeature<'a> for AnyPointerMediaFeature
type Value = AnyPointerMediaFeatureKeyword
fn parse_discrete_feature<I>( p: &mut Parser<'a, I>, atom: &'static dyn DynAtomSet, ) -> Result<(LeftParen, Ident, Option<(Colon, Self::Value)>, RightParen), Diagnostic>
Source§impl Hash for AnyPointerMediaFeature
impl Hash for AnyPointerMediaFeature
Source§impl Ord for AnyPointerMediaFeature
impl Ord for AnyPointerMediaFeature
Source§fn cmp(&self, other: &AnyPointerMediaFeature) -> Ordering
fn cmp(&self, other: &AnyPointerMediaFeature) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for AnyPointerMediaFeature
impl<'a> Parse<'a> for AnyPointerMediaFeature
Source§impl PartialEq for AnyPointerMediaFeature
impl PartialEq for AnyPointerMediaFeature
Source§impl PartialOrd for AnyPointerMediaFeature
impl PartialOrd for AnyPointerMediaFeature
Source§impl ToCursors for AnyPointerMediaFeature
impl ToCursors for AnyPointerMediaFeature
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for AnyPointerMediaFeature
impl Eq for AnyPointerMediaFeature
impl StructuralPartialEq for AnyPointerMediaFeature
Auto Trait Implementations§
impl Freeze for AnyPointerMediaFeature
impl RefUnwindSafe for AnyPointerMediaFeature
impl Send for AnyPointerMediaFeature
impl Sync for AnyPointerMediaFeature
impl Unpin for AnyPointerMediaFeature
impl UnwindSafe for AnyPointerMediaFeature
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