pub enum SingleAnimationTriggerType {
Once(Ident),
Repeat(Ident),
Alternate(Ident),
State(Ident),
}Expand description
https://drafts.csswg.org/css-animations-2/#typedef-single-animation-trigger-type
<single-animation-trigger-type> = once | repeat | alternate | stateVariants§
Trait Implementations§
Source§impl Clone for SingleAnimationTriggerType
impl Clone for SingleAnimationTriggerType
Source§fn clone(&self) -> SingleAnimationTriggerType
fn clone(&self) -> SingleAnimationTriggerType
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 SingleAnimationTriggerType
impl Debug for SingleAnimationTriggerType
Source§impl Hash for SingleAnimationTriggerType
impl Hash for SingleAnimationTriggerType
Source§impl Ord for SingleAnimationTriggerType
impl Ord for SingleAnimationTriggerType
Source§fn cmp(&self, other: &SingleAnimationTriggerType) -> Ordering
fn cmp(&self, other: &SingleAnimationTriggerType) -> 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 SingleAnimationTriggerType
impl<'a> Parse<'a> for SingleAnimationTriggerType
Source§impl PartialOrd for SingleAnimationTriggerType
impl PartialOrd for SingleAnimationTriggerType
Source§impl<'a> Peek<'a> for SingleAnimationTriggerType
impl<'a> Peek<'a> for SingleAnimationTriggerType
Source§impl ToCursors for SingleAnimationTriggerType
impl ToCursors for SingleAnimationTriggerType
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for SingleAnimationTriggerType
impl Eq for SingleAnimationTriggerType
impl StructuralPartialEq for SingleAnimationTriggerType
Auto Trait Implementations§
impl Freeze for SingleAnimationTriggerType
impl RefUnwindSafe for SingleAnimationTriggerType
impl Send for SingleAnimationTriggerType
impl Sync for SingleAnimationTriggerType
impl Unpin for SingleAnimationTriggerType
impl UnwindSafe for SingleAnimationTriggerType
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