pub struct PropertyAnimationFieldsOffsets {
pub delay: FieldOffset<PropertyAnimation, i32, AllowPin>,
pub duration: FieldOffset<PropertyAnimation, i32, AllowPin>,
pub iteration_count: FieldOffset<PropertyAnimation, f32, AllowPin>,
pub direction: FieldOffset<PropertyAnimation, AnimationDirection, AllowPin>,
pub easing: FieldOffset<PropertyAnimation, EasingCurve, AllowPin>,
}
Expand description
Helper struct containing the offsets of the fields of the struct PropertyAnimation
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§delay: FieldOffset<PropertyAnimation, i32, AllowPin>
§duration: FieldOffset<PropertyAnimation, i32, AllowPin>
§iteration_count: FieldOffset<PropertyAnimation, f32, AllowPin>
§direction: FieldOffset<PropertyAnimation, AnimationDirection, AllowPin>
§easing: FieldOffset<PropertyAnimation, EasingCurve, AllowPin>
Auto Trait Implementations§
impl Freeze for PropertyAnimationFieldsOffsets
impl RefUnwindSafe for PropertyAnimationFieldsOffsets
impl Send for PropertyAnimationFieldsOffsets
impl Sync for PropertyAnimationFieldsOffsets
impl Unpin for PropertyAnimationFieldsOffsets
impl UnwindSafe for PropertyAnimationFieldsOffsets
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