Struct luminance::texture::Dim1 [] [src]

pub struct Dim1;

Trait Implementations

impl Debug for Dim1
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for Dim1
[src]

impl Clone for Dim1
[src]

fn clone(&self) -> Dim1

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Dimensionable for Dim1
[src]

type Size = u32

type Offset = u32

fn dim() -> Dim

Dimension.

fn width(w: Self::Size) -> u32

Width of the associated Size.

fn x_offset(off: Self::Offset) -> u32

X offset.

fn zero_offset() -> Self::Offset

Zero offset.

fn height(_: Self::Size) -> u32 where Self::Size: Copy

Height of the associated Size. If it doesn’t have one, set it to 1.

fn depth(_: Self::Size) -> u32 where Self::Size: Copy

Depth of the associated Size. If it doesn’t have one, set it to 1.

fn y_offset(_: Self::Offset) -> u32 where Self::Offset: Copy

Y offset. If it doesn’t have one, set it to 0.

fn z_offset(_: Self::Offset) -> u32 where Self::Offset: Copy

Z offset. If it doesn’t have one, set it to 0.