[][src]Struct rexpaint::XpFile

pub struct XpFile {
    pub version: i32,
    pub layers: Vec<XpLayer>,
}

Structure representing a REXPaint image file which is a stack of layers

Fields

version: i32

Version number from header

layers: Vec<XpLayer>

Layers of the image

Methods

impl XpFile[src]

pub fn new(width: usize, height: usize) -> XpFile[src]

Construct a new XpFile with one layer of width by height. The contents will be empty (black foreground and background, character 0).

pub fn read<R: Read>(f: &mut R) -> Result<XpFile>[src]

Read a xp image from a stream

pub fn write<W: Write>(&self, f: &mut W) -> Result<()>[src]

Write a xp image to a stream

Trait Implementations

impl Clone for XpFile[src]

impl PartialEq<XpFile> for XpFile[src]

impl Debug for XpFile[src]

Auto Trait Implementations

impl Send for XpFile

impl Sync for XpFile

impl Unpin for XpFile

impl UnwindSafe for XpFile

impl RefUnwindSafe for XpFile

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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