pub struct TimelineRotation {
pub timeline: SharedAnimatedTimeline,
pub entry_id: TimelineEntryId,
}Expand description
Timeline rotation binding for continuous spinning animations
Used for spinners and other continuously rotating elements that use timeline-based animation instead of spring physics.
Fields§
§timeline: SharedAnimatedTimelineThe timeline containing the rotation animation
entry_id: TimelineEntryIdThe entry ID for the rotation value in the timeline
Trait Implementations§
Source§impl Clone for TimelineRotation
impl Clone for TimelineRotation
Source§fn clone(&self) -> TimelineRotation
fn clone(&self) -> TimelineRotation
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 moreAuto Trait Implementations§
impl Freeze for TimelineRotation
impl RefUnwindSafe for TimelineRotation
impl Send for TimelineRotation
impl Sync for TimelineRotation
impl Unpin for TimelineRotation
impl UnsafeUnpin for TimelineRotation
impl UnwindSafe for TimelineRotation
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