pub struct AnimParams {
pub loop_count: i32,
}
Expand description
Animation parameters
Fields§
§loop_count: i32
Number of times to repeat the animation [0 = infinite, default].
Trait Implementations§
Source§impl Clone for AnimParams
impl Clone for AnimParams
Source§fn clone(&self) -> AnimParams
fn clone(&self) -> AnimParams
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 Default for AnimParams
impl Default for AnimParams
Source§fn default() -> AnimParams
fn default() -> AnimParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AnimParams
impl RefUnwindSafe for AnimParams
impl Send for AnimParams
impl Sync for AnimParams
impl Unpin for AnimParams
impl UnwindSafe for AnimParams
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