pub struct Tag {
pub name: String,
pub from_frame: usize,
pub to_frame: usize,
pub direction: LoopDirection,
pub repeat: u16,
pub user_data: Option<UserData>,
}Expand description
An animation tag spanning a range of frames.
Fields§
§name: String§from_frame: usize§to_frame: usize§direction: LoopDirection§repeat: u16§user_data: Option<UserData>Trait Implementations§
impl StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnsafeUnpin for Tag
impl UnwindSafe for Tag
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