pub struct AnimationControl {
pub backgroud_color: u32,
pub loop_count: u16,
}Expand description
Global animation parameters stored in the ANIM chunk.
Fields§
§backgroud_color: u32Canvas background color in little-endian ARGB order.
loop_count: u16Loop count from the container. 0 means infinite loop.
Auto Trait Implementations§
impl Freeze for AnimationControl
impl RefUnwindSafe for AnimationControl
impl Send for AnimationControl
impl Sync for AnimationControl
impl Unpin for AnimationControl
impl UnsafeUnpin for AnimationControl
impl UnwindSafe for AnimationControl
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