pub struct SubLayerLink {
pub tileset: u8,
pub animation: u8,
pub animation_frame: u8,
}Expand description
A link to a sublayer within a layer.
Fields§
§tileset: u8Which sublayer is this layer’s tileset linked to?
animation: u8Which sublayer is this layer’s animation linked to?
animation_frame: u8Which sublayer is this layer’s animation frames linked to?
Implementations§
Source§impl SubLayerLink
impl SubLayerLink
Trait Implementations§
Source§impl Clone for SubLayerLink
impl Clone for SubLayerLink
Source§fn clone(&self) -> SubLayerLink
fn clone(&self) -> SubLayerLink
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 moreSource§impl Debug for SubLayerLink
impl Debug for SubLayerLink
Source§impl Default for SubLayerLink
impl Default for SubLayerLink
Source§impl PartialEq for SubLayerLink
impl PartialEq for SubLayerLink
impl Eq for SubLayerLink
impl StructuralPartialEq for SubLayerLink
Auto Trait Implementations§
impl Freeze for SubLayerLink
impl RefUnwindSafe for SubLayerLink
impl Send for SubLayerLink
impl Sync for SubLayerLink
impl Unpin for SubLayerLink
impl UnwindSafe for SubLayerLink
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