Struct asefile::Layer

source ·
pub struct Layer<'a> { /* private fields */ }
Expand description

A reference to a single layer.

Implementations§

source§

impl<'a> Layer<'a>

source

pub fn id(&self) -> u32

This layer’s ID.

source

pub fn flags(&self) -> LayerFlags

Layer’s flags

source

pub fn name(&self) -> &str

Name of the layer

source

pub fn blend_mode(&self) -> BlendMode

Blend mode of the layer. Describes how this layer is combined with the layers underneath it. See BlendMode for details.

source

pub fn opacity(&self) -> u8

Layer opacity describes

source

pub fn layer_type(&self) -> LayerType

Describes whether this is a regular, group, or tilemap layer.

source

pub fn is_tilemap(&self) -> bool

Is this a tilemap layer?

source

pub fn parent(&self) -> Option<Layer<'_>>

The parent of this layer, if any. For layers that are part of a group this returns the parent layer.

Does not indicate the blend order of layers (i.e., which layers are above or below).

source

pub fn is_visible(&self) -> bool

Returns if this layer is visible. This requires that this layer and all of its parent layers are visible.

source

pub fn frame(&self, frame_id: u32) -> Cel<'_>

Get a reference to the Cel for this frame in the layer.

source

pub fn user_data(&self) -> Option<&UserData>

Returns a reference to the layer’s UserData, if any exists.

Trait Implementations§

source§

impl<'a> Debug for Layer<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Layer<'a>

§

impl<'a> RefUnwindSafe for Layer<'a>

§

impl<'a> Send for Layer<'a>

§

impl<'a> Sync for Layer<'a>

§

impl<'a> Unpin for Layer<'a>

§

impl<'a> UnwindSafe for Layer<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.