[][src]Struct astcenc_rs::Image

pub struct Image<T> {
    pub extents: Extents,
    pub border_padding: u32,
    pub data: T,
}

The 3D image type. Each pixel should be RGBA. The data can be anything that dereferences to a flat array of color components, as long as the color components are in one of the supported formats. For HDR images, f32 or half::f16 must be used.

Fields

extents: Extents

The dimensions of the image, not including padding. This must match the length of the data.

border_padding: u32

The amount of padding around the edge of the image. This space should be filled by extrapolating the nearest edge color.

data: T

The data array.

Trait Implementations

impl<T: Default> Default for Image<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Image<T> where
    T: RefUnwindSafe

impl<T> Send for Image<T> where
    T: Send

impl<T> Sync for Image<T> where
    T: Sync

impl<T> Unpin for Image<T> where
    T: Unpin

impl<T> UnwindSafe for Image<T> where
    T: UnwindSafe

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.