pub struct TransitionDelayStyleValue<'a>(pub CommaSeparated<'a, Time>);Expand description
Represents the style value for transition-delay as defined in css-transitions-2.
The transition shorthand CSS property sets how changes to an element’s styles may occur over time. Transitions can be applied to specific CSS properties, all properties, or none.
The grammar is defined as:
<time>#Tuple Fields§
§0: CommaSeparated<'a, Time>Trait Implementations§
Source§impl<'a> Clone for TransitionDelayStyleValue<'a>
impl<'a> Clone for TransitionDelayStyleValue<'a>
Source§fn clone(&self) -> TransitionDelayStyleValue<'a>
fn clone(&self) -> TransitionDelayStyleValue<'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 TransitionDelayStyleValue<'a>
impl<'a> Debug for TransitionDelayStyleValue<'a>
Source§impl<'a> Hash for TransitionDelayStyleValue<'a>
impl<'a> Hash for TransitionDelayStyleValue<'a>
Source§impl<'a> Ord for TransitionDelayStyleValue<'a>
impl<'a> Ord for TransitionDelayStyleValue<'a>
Source§fn cmp(&self, other: &TransitionDelayStyleValue<'a>) -> Ordering
fn cmp(&self, other: &TransitionDelayStyleValue<'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 TransitionDelayStyleValue<'a>
impl<'a> Parse<'a> for TransitionDelayStyleValue<'a>
Source§impl<'a> PartialEq for TransitionDelayStyleValue<'a>
impl<'a> PartialEq for TransitionDelayStyleValue<'a>
Source§fn eq(&self, other: &TransitionDelayStyleValue<'a>) -> bool
fn eq(&self, other: &TransitionDelayStyleValue<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> PartialOrd for TransitionDelayStyleValue<'a>
impl<'a> PartialOrd for TransitionDelayStyleValue<'a>
Source§impl<'a> Peek<'a> for TransitionDelayStyleValue<'a>
impl<'a> Peek<'a> for TransitionDelayStyleValue<'a>
Source§impl<'a> ToCursors for TransitionDelayStyleValue<'a>
impl<'a> ToCursors for TransitionDelayStyleValue<'a>
fn to_cursors(&self, s: &mut impl CursorSink)
impl<'a> Eq for TransitionDelayStyleValue<'a>
impl<'a> StructuralPartialEq for TransitionDelayStyleValue<'a>
Auto Trait Implementations§
impl<'a> Freeze for TransitionDelayStyleValue<'a>
impl<'a> !RefUnwindSafe for TransitionDelayStyleValue<'a>
impl<'a> !Send for TransitionDelayStyleValue<'a>
impl<'a> !Sync for TransitionDelayStyleValue<'a>
impl<'a> Unpin for TransitionDelayStyleValue<'a>
impl<'a> !UnwindSafe for TransitionDelayStyleValue<'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