pub struct AnimationDirectionStyleValue<'a>(pub CommaSeparated<'a, SingleAnimationDirection>);Expand description
Represents the style value for animation-direction as defined in css-animations-2.
The animation CSS property animates an element’s style over time, using keyframes described in @keyframes rules.
The grammar is defined as:
<single-animation-direction>#Tuple Fields§
§0: CommaSeparated<'a, SingleAnimationDirection>Trait Implementations§
Source§impl<'a> Clone for AnimationDirectionStyleValue<'a>
impl<'a> Clone for AnimationDirectionStyleValue<'a>
Source§fn clone(&self) -> AnimationDirectionStyleValue<'a>
fn clone(&self) -> AnimationDirectionStyleValue<'a>
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> Debug for AnimationDirectionStyleValue<'a>
impl<'a> Debug for AnimationDirectionStyleValue<'a>
Source§impl<'a> Hash for AnimationDirectionStyleValue<'a>
impl<'a> Hash for AnimationDirectionStyleValue<'a>
Source§impl<'a> Ord for AnimationDirectionStyleValue<'a>
impl<'a> Ord for AnimationDirectionStyleValue<'a>
Source§fn cmp(&self, other: &AnimationDirectionStyleValue<'a>) -> Ordering
fn cmp(&self, other: &AnimationDirectionStyleValue<'a>) -> 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 AnimationDirectionStyleValue<'a>
impl<'a> Parse<'a> for AnimationDirectionStyleValue<'a>
Source§impl<'a> PartialEq for AnimationDirectionStyleValue<'a>
impl<'a> PartialEq for AnimationDirectionStyleValue<'a>
Source§fn eq(&self, other: &AnimationDirectionStyleValue<'a>) -> bool
fn eq(&self, other: &AnimationDirectionStyleValue<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> PartialOrd for AnimationDirectionStyleValue<'a>
impl<'a> PartialOrd for AnimationDirectionStyleValue<'a>
Source§impl<'a> Peek<'a> for AnimationDirectionStyleValue<'a>
impl<'a> Peek<'a> for AnimationDirectionStyleValue<'a>
Source§impl<'a> ToCursors for AnimationDirectionStyleValue<'a>
impl<'a> ToCursors for AnimationDirectionStyleValue<'a>
fn to_cursors(&self, s: &mut impl CursorSink)
impl<'a> Eq for AnimationDirectionStyleValue<'a>
impl<'a> StructuralPartialEq for AnimationDirectionStyleValue<'a>
Auto Trait Implementations§
impl<'a> Freeze for AnimationDirectionStyleValue<'a>
impl<'a> !RefUnwindSafe for AnimationDirectionStyleValue<'a>
impl<'a> !Send for AnimationDirectionStyleValue<'a>
impl<'a> !Sync for AnimationDirectionStyleValue<'a>
impl<'a> Unpin for AnimationDirectionStyleValue<'a>
impl<'a> !UnwindSafe for AnimationDirectionStyleValue<'a>
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