[][src]Struct tinytga::TgaFooter

pub struct TgaFooter {
    pub extension_area_offset: u32,
    pub developer_directory_offset: u32,
}

TGA footer structure, referenced from http://tfc.duke.free.fr/coding/tga_specs.pdf

Fields

extension_area_offset: u32

Extension area byte offset from beginning of file

developer_directory_offset: u32

Developer directory area byte offset from beginning of file

Trait Implementations

impl Clone for TgaFooter[src]

impl Copy for TgaFooter[src]

impl Debug for TgaFooter[src]

impl Default for TgaFooter[src]

impl Eq for TgaFooter[src]

impl Hash for TgaFooter[src]

impl Ord for TgaFooter[src]

impl PartialEq<TgaFooter> for TgaFooter[src]

impl PartialOrd<TgaFooter> for TgaFooter[src]

impl StructuralEq for TgaFooter[src]

impl StructuralPartialEq for TgaFooter[src]

Auto Trait Implementations

impl Send for TgaFooter

impl Sync for TgaFooter

impl Unpin for TgaFooter

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.