Enum naga::ImageDimension
source · pub enum ImageDimension {
D1,
D2,
D3,
Cube,
}
Expand description
The number of dimensions an image has.
Variants§
Trait Implementations§
source§impl Clone for ImageDimension
impl Clone for ImageDimension
source§fn clone(&self) -> ImageDimension
fn clone(&self) -> ImageDimension
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ImageDimension
impl Debug for ImageDimension
source§impl From<ImageDimension> for Dim
impl From<ImageDimension> for Dim
source§fn from(dim: ImageDimension) -> Self
fn from(dim: ImageDimension) -> Self
Converts to this type from the input type.
source§impl Hash for ImageDimension
impl Hash for ImageDimension
source§impl Ord for ImageDimension
impl Ord for ImageDimension
source§fn cmp(&self, other: &ImageDimension) -> Ordering
fn cmp(&self, other: &ImageDimension) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ImageDimension
impl PartialEq for ImageDimension
source§fn eq(&self, other: &ImageDimension) -> bool
fn eq(&self, other: &ImageDimension) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ImageDimension
impl PartialOrd for ImageDimension
source§fn partial_cmp(&self, other: &ImageDimension) -> Option<Ordering>
fn partial_cmp(&self, other: &ImageDimension) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ImageDimension
impl Eq for ImageDimension
impl StructuralPartialEq for ImageDimension
Auto Trait Implementations§
impl Freeze for ImageDimension
impl RefUnwindSafe for ImageDimension
impl Send for ImageDimension
impl Sync for ImageDimension
impl Unpin for ImageDimension
impl UnwindSafe for ImageDimension
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.