pub struct StartOffset {
pub offset_millis: i64,
pub offset_type: StartOffsetType,
}Expand description
Start offset configuration for infinite animations.
Fields§
§offset_millis: i64Offset in milliseconds.
offset_type: StartOffsetTypeOffset behavior (delay or fast-forward).
Trait Implementations§
Source§impl Clone for StartOffset
impl Clone for StartOffset
Source§fn clone(&self) -> StartOffset
fn clone(&self) -> StartOffset
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 StartOffset
Source§impl Debug for StartOffset
impl Debug for StartOffset
Source§impl Default for StartOffset
impl Default for StartOffset
impl Eq for StartOffset
Source§impl PartialEq for StartOffset
impl PartialEq for StartOffset
Source§fn eq(&self, other: &StartOffset) -> bool
fn eq(&self, other: &StartOffset) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartOffset
Auto Trait Implementations§
impl Freeze for StartOffset
impl RefUnwindSafe for StartOffset
impl Send for StartOffset
impl Sync for StartOffset
impl Unpin for StartOffset
impl UnsafeUnpin for StartOffset
impl UnwindSafe for StartOffset
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