pub enum TextureFormat {
Alpha,
Rgb,
Rgba,
Luminance,
LuminanceAlpha,
}Variants§
Implementations§
Source§impl TextureFormat
impl TextureFormat
pub const VALID_TEXTURE_FORMAT: &[u32]
Trait Implementations§
Source§impl Clone for TextureFormat
impl Clone for TextureFormat
Source§fn clone(&self) -> TextureFormat
fn clone(&self) -> TextureFormat
Returns a duplicate 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 TextureFormat
impl Debug for TextureFormat
Source§impl Default for TextureFormat
impl Default for TextureFormat
Source§fn default() -> TextureFormat
fn default() -> TextureFormat
Returns the “default value” for a type. Read more
Source§impl From<TextureFormat> for u32
impl From<TextureFormat> for u32
Source§fn from(value: TextureFormat) -> Self
fn from(value: TextureFormat) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TextureFormat
impl PartialEq for TextureFormat
Source§impl Serialize for TextureFormat
impl Serialize for TextureFormat
Source§impl TryFrom<u32> for TextureFormat
impl TryFrom<u32> for TextureFormat
impl Copy for TextureFormat
impl Eq for TextureFormat
impl StructuralPartialEq for TextureFormat
Auto Trait Implementations§
impl Freeze for TextureFormat
impl RefUnwindSafe for TextureFormat
impl Send for TextureFormat
impl Sync for TextureFormat
impl Unpin for TextureFormat
impl UnwindSafe for TextureFormat
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§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.