#[repr(C)]pub enum ExternalTextureFormat {
Rgba = 0,
Nv12 = 1,
Yu12 = 2,
}
Expand description
Format of an ExternalTexture
. This indicates the number of underlying
planes used by the ExternalTexture
as well as each plane’s format.
Variants§
Rgba = 0
Single TextureFormat::Rgba8Unorm
or TextureFormat::Bgra8Unorm
format plane.
Nv12 = 1
TextureFormat::R8Unorm
Y plane, and TextureFormat::Rg8Unorm
interleaved CbCr plane.
Yu12 = 2
Separate TextureFormat::R8Unorm
Y, Cb, and Cr planes.
Trait Implementations§
Source§impl Clone for ExternalTextureFormat
impl Clone for ExternalTextureFormat
Source§fn clone(&self) -> ExternalTextureFormat
fn clone(&self) -> ExternalTextureFormat
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 ExternalTextureFormat
impl Debug for ExternalTextureFormat
Source§impl<'de> Deserialize<'de> for ExternalTextureFormat
impl<'de> Deserialize<'de> for ExternalTextureFormat
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExternalTextureFormat, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExternalTextureFormat, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ExternalTextureFormat
impl Hash for ExternalTextureFormat
Source§impl PartialEq for ExternalTextureFormat
impl PartialEq for ExternalTextureFormat
Source§impl Serialize for ExternalTextureFormat
impl Serialize for ExternalTextureFormat
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ExternalTextureFormat
impl Eq for ExternalTextureFormat
impl StructuralPartialEq for ExternalTextureFormat
Auto Trait Implementations§
impl Freeze for ExternalTextureFormat
impl RefUnwindSafe for ExternalTextureFormat
impl Send for ExternalTextureFormat
impl Sync for ExternalTextureFormat
impl Unpin for ExternalTextureFormat
impl UnwindSafe for ExternalTextureFormat
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,
§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.