[][src]Struct mochi::Atlas

pub struct Atlas {
    pub img: Rc<RefCell<ImageSurface>>,
    pub frames: Vec<AtlasFrame>,
}

Fields

img: Rc<RefCell<ImageSurface>>frames: Vec<AtlasFrame>

Implementations

impl Atlas[src]

pub fn new(
    img: Rc<RefCell<ImageSurface>>,
    frame_width: u32,
    frame_height: u32,
    num_frames: u32
) -> 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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,