[][src]Struct elma::lgr::LGR

pub struct LGR {
    pub path: Option<PathBuf>,
    pub picture_list: Vec<Picture>,
    pub picture_data: Vec<PictureData>,
}

LGR structure.

Fields

path: Option<PathBuf>

Path of LGR file.

picture_list: Vec<Picture>

List of pictures.

picture_data: Vec<PictureData>

Picture data.

Methods

impl LGR[src]

pub fn new() -> Self[src]

Creates a new LGR.

pub fn load<P: Into<PathBuf>>(path: P) -> Result<Self, ElmaError>[src]

Loads a LGR from file.

Examples

let lgr = LGR::load("default.lgr").unwrap();

pub fn from_bytes<B: AsRef<[u8]>>(buffer: B) -> Result<Self, ElmaError>[src]

Load a LGR from bytes.

Examples

let buffer = &[0,1,2,3,4]; // pretend this is an actual lgr file.
let lgr = LGR::from_bytes(buffer).unwrap();

pub fn to_bytes(&self) -> Result<Vec<u8>, ElmaError>[src]

Returns a Vec with bytes representing the LGR as a buffer.

Examples

let lgr = LGR::new();
let buffer = lgr.to_bytes().unwrap();

pub fn save<P: Into<PathBuf>>(&mut self, path: P) -> Result<(), ElmaError>[src]

Save the LGR to a file.

Examples

let mut lgr = LGR::new();
lgr.save("cool.lgr");

Trait Implementations

impl Eq for LGR[src]

impl Default for LGR[src]

impl PartialEq<LGR> for LGR[src]

impl Clone for LGR[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LGR[src]

Auto Trait Implementations

impl Send for LGR

impl Sync for LGR

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.