pub enum ImageDimension {
D1,
D2,
D3,
Cube,
}
Expand description
The number of dimensions an image has.
Variants§
Implementations§
source§impl ImageDimension
impl ImageDimension
const fn to_hlsl_str(self) -> &'static str
source§impl ImageDimension
impl ImageDimension
const fn required_coordinate_size(&self) -> Option<VectorSize>
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for ImageDimension
impl<'arbitrary> Arbitrary<'arbitrary> for ImageDimension
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moresource§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<'de> Deserialize<'de> for ImageDimension
impl<'de> Deserialize<'de> for ImageDimension
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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§impl PartialOrd for ImageDimension
impl PartialOrd for ImageDimension
source§impl Serialize for ImageDimension
impl Serialize for ImageDimension
impl 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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.