pub struct AsepriteTag {
pub frames: Range<u16>,
pub animation_direction: AsepriteAnimationDirection,
pub name: String,
}
Expand description
A single Aseprite tag
Fields§
§frames: Range<u16>
The frames which this tag represents
animation_direction: AsepriteAnimationDirection
The direction of its animation
name: String
The tag name
Trait Implementations§
Source§impl Clone for AsepriteTag
impl Clone for AsepriteTag
Source§fn clone(&self) -> AsepriteTag
fn clone(&self) -> AsepriteTag
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AsepriteTag
impl RefUnwindSafe for AsepriteTag
impl Send for AsepriteTag
impl Sync for AsepriteTag
impl Unpin for AsepriteTag
impl UnwindSafe for AsepriteTag
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