pub struct PropertyAnimationFieldsOffsets {
pub delay: FieldOffset<PropertyAnimation, i32, AllowPin>,
pub duration: FieldOffset<PropertyAnimation, i32, AllowPin>,
pub iteration_count: FieldOffset<PropertyAnimation, f32, 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>§easing: FieldOffset<PropertyAnimation, EasingCurve, AllowPin>Auto Trait Implementations§
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