#[repr(C)]pub struct PropertyAnimation {
pub delay: i32,
pub duration: i32,
pub iteration_count: f32,
pub direction: AnimationDirection,
pub easing: EasingCurve,
}
Expand description
The implementation of the PropertyAnimation
element
Fields§
§delay: i32
§duration: i32
§iteration_count: f32
§direction: AnimationDirection
§easing: EasingCurve
Implementations§
Source§impl PropertyAnimation
impl PropertyAnimation
Sourcepub const FIELD_OFFSETS: PropertyAnimationFieldsOffsets
pub const FIELD_OFFSETS: PropertyAnimationFieldsOffsets
Return a struct containing the offset of for the fields of this struct
Trait Implementations§
Source§impl Clone for PropertyAnimation
impl Clone for PropertyAnimation
Source§fn clone(&self) -> PropertyAnimation
fn clone(&self) -> PropertyAnimation
Returns a copy 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 PropertyAnimation
impl Debug for PropertyAnimation
Source§impl Default for PropertyAnimation
impl Default for PropertyAnimation
impl<'__dummy_lifetime> Unpin for PropertyAnimationwhere
__MustNotImplUnpin<'__dummy_lifetime>: Unpin,
Auto Trait Implementations§
impl Freeze for PropertyAnimation
impl RefUnwindSafe for PropertyAnimation
impl Send for PropertyAnimation
impl Sync for PropertyAnimation
impl UnwindSafe for PropertyAnimation
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