[][src]Struct pyxel::Layer

pub struct Layer { /* fields omitted */ }

A Pyxel canvas layer.

Methods

impl Layer[src]

pub fn alpha(&self) -> u8[src]

Returns the alpha value of this layer.

pub fn blend_mode(&self) -> BlendMode[src]

Returns the blend mode for this layer.

pub fn hidden(&self) -> bool[src]

Returns true if this layer is hidden in the PyxelEdit UI.

pub fn muted(&self) -> bool[src]

Returns true if this layer is muted in the PyxelEdit UI.

pub fn name(&self) -> &String[src]

Returns the name of this layer.

pub fn soloed(&self) -> bool[src]

Returns true if this layer is soloed in the PyxelEdit UI.

pub fn tile_refs(&self) -> &BTreeMap<usize, TileRef>[src]

Returns the tilerefs for this layer.

pub fn image_data(&self) -> &Vec<u8>[src]

Returns the raw bytes of the image for this layer.

Trait Implementations

impl Debug for Layer[src]

impl<'de> Deserialize<'de> for Layer[src]

Auto Trait Implementations

impl Sync for Layer

impl Send for Layer

impl Unpin for Layer

impl RefUnwindSafe for Layer

impl UnwindSafe for Layer

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]