pub enum EnvironmentBlendingMediaFeature {
WithValue(LeftParen, Ident, Colon, EnvironmentBlendingMediaFeatureKeyword, RightParen),
Bare(LeftParen, Ident, RightParen),
}Variants§
WithValue(LeftParen, Ident, Colon, EnvironmentBlendingMediaFeatureKeyword, RightParen)
Bare(LeftParen, Ident, RightParen)
Trait Implementations§
Source§impl Clone for EnvironmentBlendingMediaFeature
impl Clone for EnvironmentBlendingMediaFeature
Source§fn clone(&self) -> EnvironmentBlendingMediaFeature
fn clone(&self) -> EnvironmentBlendingMediaFeature
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<'a> DiscreteFeature<'a> for EnvironmentBlendingMediaFeature
impl<'a> DiscreteFeature<'a> for EnvironmentBlendingMediaFeature
type Value = EnvironmentBlendingMediaFeatureKeyword
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 Ord for EnvironmentBlendingMediaFeature
impl Ord for EnvironmentBlendingMediaFeature
Source§fn cmp(&self, other: &EnvironmentBlendingMediaFeature) -> Ordering
fn cmp(&self, other: &EnvironmentBlendingMediaFeature) -> 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 EnvironmentBlendingMediaFeature
impl<'a> Parse<'a> for EnvironmentBlendingMediaFeature
Source§impl PartialEq for EnvironmentBlendingMediaFeature
impl PartialEq for EnvironmentBlendingMediaFeature
Source§fn eq(&self, other: &EnvironmentBlendingMediaFeature) -> bool
fn eq(&self, other: &EnvironmentBlendingMediaFeature) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EnvironmentBlendingMediaFeature
impl PartialOrd for EnvironmentBlendingMediaFeature
Source§impl ToCursors for EnvironmentBlendingMediaFeature
impl ToCursors for EnvironmentBlendingMediaFeature
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for EnvironmentBlendingMediaFeature
impl Eq for EnvironmentBlendingMediaFeature
impl StructuralPartialEq for EnvironmentBlendingMediaFeature
Auto Trait Implementations§
impl Freeze for EnvironmentBlendingMediaFeature
impl RefUnwindSafe for EnvironmentBlendingMediaFeature
impl Send for EnvironmentBlendingMediaFeature
impl Sync for EnvironmentBlendingMediaFeature
impl Unpin for EnvironmentBlendingMediaFeature
impl UnwindSafe for EnvironmentBlendingMediaFeature
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