[][src]Struct gfx_hal::image::Extent

pub struct Extent {
    pub width: Size,
    pub height: Size,
    pub depth: Size,
}

Describes the size of an image, which may be up to three dimensional.

Fields

width: Size

Image width

height: Size

Image height

depth: Size

Image depth.

Methods

impl Extent[src]

pub fn is_empty(&self) -> bool[src]

Return true if one of the dimensions is zero.

pub fn at_level(&self, level: Level) -> Self[src]

Get the extent at a particular mipmap level.

pub fn rect(&self) -> Rect[src]

Get a rectangle for the full area of extent.

Trait Implementations

impl From<Extent> for Extent2D[src]

impl Clone for Extent[src]

impl Copy for Extent[src]

impl Default for Extent[src]

impl Eq for Extent[src]

impl PartialEq<Extent> for Extent[src]

impl Debug for Extent[src]

impl Hash for Extent[src]

Auto Trait Implementations

impl Send for Extent

impl Sync for Extent

impl Unpin for Extent

impl UnwindSafe for Extent

impl RefUnwindSafe for Extent

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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