pub enum AnimProperty {
Hover,
Active,
Pressed,
Focus,
Opacity,
TranslateX,
TranslateY,
Custom(&'static str),
}Variants§
Trait Implementations§
Source§impl Clone for AnimProperty
impl Clone for AnimProperty
Source§fn clone(&self) -> AnimProperty
fn clone(&self) -> AnimProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AnimProperty
Source§impl Debug for AnimProperty
impl Debug for AnimProperty
impl Eq for AnimProperty
Source§impl Hash for AnimProperty
impl Hash for AnimProperty
Source§impl PartialEq for AnimProperty
impl PartialEq for AnimProperty
impl StructuralPartialEq for AnimProperty
Auto Trait Implementations§
impl Freeze for AnimProperty
impl RefUnwindSafe for AnimProperty
impl Send for AnimProperty
impl Sync for AnimProperty
impl Unpin for AnimProperty
impl UnsafeUnpin for AnimProperty
impl UnwindSafe for AnimProperty
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