Struct omt::atlas::Atlas[][src]

pub struct Atlas {
    pub entries: Vec<Entry>,
    pub image: Option<DynamicImage>,
    // some fields omitted
}

Fields

entries: Vec<Entry>image: Option<DynamicImage>

Implementations

impl Atlas[src]

pub fn add_entry(&mut self, entry: Entry)[src]

pub fn blit_entries(&mut self)[src]

pub fn hello()[src]

pub fn all_for_template(input: &str) -> Vec<Atlas>[src]

pub fn info(input: &str) -> Result<u32, OmError>[src]

pub fn combine(
    output: &str,
    size: u32,
    border: u32,
    input: &Vec<&str>
) -> Result<u32, OmError>
[src]

Trait Implementations

impl Debug for Atlas[src]

Auto Trait Implementations

impl RefUnwindSafe for Atlas

impl Send for Atlas

impl Sync for Atlas

impl Unpin for Atlas

impl UnwindSafe for Atlas

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

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.