[][src]Struct astcenc_rs::Extents

pub struct Extents {
    pub x: u32,
    pub y: u32,
    pub z: u32,
}

A 3-dimensional set of width, height and depth. ASTC supports 3D images, so we always have to specify the depth of an image.

Fields

x: u32

Width

y: u32

Height

z: u32

Depth

Implementations

impl Extents[src]

pub fn default_block_size() -> Self[src]

The block size of the image, by default. This default block size assumes a 2D image, and so sets the depth to 1, making the default block size 4x4x1.

pub fn new(x: u32, y: u32) -> Self[src]

Create a 2D extent (depth set to 1)

pub fn new_3d(x: u32, y: u32, z: u32) -> Self[src]

Create a 3D extent

Trait Implementations

impl Clone for Extents[src]

impl Copy for Extents[src]

impl Default for Extents[src]

impl Eq for Extents[src]

impl Hash for Extents[src]

impl PartialEq<Extents> for Extents[src]

impl StructuralEq for Extents[src]

impl StructuralPartialEq for Extents[src]

Auto Trait Implementations

impl RefUnwindSafe for Extents

impl Send for Extents

impl Sync for Extents

impl Unpin for Extents

impl UnwindSafe for Extents

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.