pub enum AnimateableFeature {
Show 30 variants
ScrollPosition(Ident),
Contents(Ident),
BackdropFilter(Ident),
ClipPath(Ident),
Contain(Ident),
Filter(Ident),
Isolation(Ident),
MixBlendMode(Ident),
OffsetPath(Ident),
Opacity(Ident),
Perspective(Ident),
Position(Ident),
Rotate(Ident),
Scale(Ident),
Transform(Ident),
TransformStyle(Ident),
Translate(Ident),
ZIndex(Ident),
ViewTransitionName(Ident),
Mask(Ident),
OffsetPosition(Ident),
WebkitBoxReflect(Ident),
WebkitMaskBoxImage(Ident),
MaskBorder(Ident),
WebkitMask(Ident),
WebkitPerspective(Ident),
WebkitBackdropFilter(Ident),
WebkitOverflowScrolling(Ident),
MaskImage(Ident),
CustomIdent(Ident),
}Variants§
ScrollPosition(Ident)
Contents(Ident)
BackdropFilter(Ident)
ClipPath(Ident)
Contain(Ident)
Filter(Ident)
Isolation(Ident)
MixBlendMode(Ident)
OffsetPath(Ident)
Opacity(Ident)
Perspective(Ident)
Position(Ident)
Rotate(Ident)
Scale(Ident)
Transform(Ident)
TransformStyle(Ident)
Translate(Ident)
ZIndex(Ident)
ViewTransitionName(Ident)
Mask(Ident)
OffsetPosition(Ident)
WebkitBoxReflect(Ident)
WebkitMaskBoxImage(Ident)
MaskBorder(Ident)
WebkitMask(Ident)
WebkitPerspective(Ident)
WebkitBackdropFilter(Ident)
WebkitOverflowScrolling(Ident)
MaskImage(Ident)
CustomIdent(Ident)
Trait Implementations§
Source§impl Clone for AnimateableFeature
impl Clone for AnimateableFeature
Source§fn clone(&self) -> AnimateableFeature
fn clone(&self) -> AnimateableFeature
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 AnimateableFeature
impl Debug for AnimateableFeature
Source§impl From<AnimateableFeature> for Cursor
impl From<AnimateableFeature> for Cursor
Source§fn from(value: AnimateableFeature) -> Cursor
fn from(value: AnimateableFeature) -> Cursor
Converts to this type from the input type.
Source§impl From<AnimateableFeature> for Token
impl From<AnimateableFeature> for Token
Source§fn from(value: AnimateableFeature) -> Token
fn from(value: AnimateableFeature) -> Token
Converts to this type from the input type.
Source§impl Hash for AnimateableFeature
impl Hash for AnimateableFeature
Source§impl NodeWithMetadata<CssMetadata> for AnimateableFeature
impl NodeWithMetadata<CssMetadata> for AnimateableFeature
Source§fn self_metadata(&self) -> CssMetadata
fn self_metadata(&self) -> CssMetadata
Returns the metadata contributed by this node itself, not including children.
Most nodes don’t contribute metadata, so can simply return
M::default().
Nodes like StyleRule or AtRules should return their own node kind flags here.Source§fn metadata(&self) -> CssMetadata
fn metadata(&self) -> CssMetadata
Returns the complete aggregated metadata for this node (self + children).
Default implementation merges children’s metadata with self_metadata().
Source§impl Ord for AnimateableFeature
impl Ord for AnimateableFeature
Source§fn cmp(&self, other: &AnimateableFeature) -> Ordering
fn cmp(&self, other: &AnimateableFeature) -> 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 AnimateableFeature
impl<'a> Parse<'a> for AnimateableFeature
Source§impl PartialEq for AnimateableFeature
impl PartialEq for AnimateableFeature
Source§impl PartialOrd for AnimateableFeature
impl PartialOrd for AnimateableFeature
Source§impl<'a> Peek<'a> for AnimateableFeature
impl<'a> Peek<'a> for AnimateableFeature
Source§impl SemanticEq for AnimateableFeature
impl SemanticEq for AnimateableFeature
Source§fn semantic_eq(&self, other: &Self) -> bool
fn semantic_eq(&self, other: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl ToCursors for AnimateableFeature
impl ToCursors for AnimateableFeature
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for AnimateableFeature
impl Eq for AnimateableFeature
impl StructuralPartialEq for AnimateableFeature
Auto Trait Implementations§
impl Freeze for AnimateableFeature
impl RefUnwindSafe for AnimateableFeature
impl Send for AnimateableFeature
impl Sync for AnimateableFeature
impl Unpin for AnimateableFeature
impl UnwindSafe for AnimateableFeature
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