#[non_exhaustive]
#[repr(i32)]
pub enum HardwareBufferFormat {
Show 16 variants R8G8B8A8_UNORM = 1, R8G8B8X8_UNORM = 2, R8G8B8_UNORM = 3, R5G6B5_UNORM = 4, R16G16B16A16_FLOAT = 22, R10G10B10A2_UNORM = 43, BLOB = 33, D16_UNORM = 48, D24_UNORM = 49, D24_UNORM_S8_UINT = 50, D32_FLOAT = 51, D32_FLOAT_S8_UINT = 52, S8_UINT = 53, Y8Cb8Cr8_420 = 35, YCbCr_P010 = 54, R8_UNORM = 56,
}
Expand description

Buffer pixel formats.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

R8G8B8A8_UNORM = 1

§

R8G8B8X8_UNORM = 2

§

R8G8B8_UNORM = 3

Available on crate feature api-level-26 only.
§

R5G6B5_UNORM = 4

§

R16G16B16A16_FLOAT = 22

Available on crate feature api-level-26 only.
§

R10G10B10A2_UNORM = 43

Available on crate feature api-level-26 only.
§

BLOB = 33

Available on crate feature api-level-26 only.
§

D16_UNORM = 48

Available on crate feature api-level-26 only.
§

D24_UNORM = 49

Available on crate feature api-level-26 only.
§

D24_UNORM_S8_UINT = 50

Available on crate feature api-level-26 only.
§

D32_FLOAT = 51

Available on crate feature api-level-26 only.
§

D32_FLOAT_S8_UINT = 52

Available on crate feature api-level-26 only.
§

S8_UINT = 53

Available on crate feature api-level-26 only.
§

Y8Cb8Cr8_420 = 35

Available on crate feature api-level-26 only.
§

YCbCr_P010 = 54

Available on crate feature api-level-26 only.
§

R8_UNORM = 56

Available on crate feature api-level-26 only.

Implementations§

source§

impl HardwareBufferFormat

source

pub fn bytes_per_pixel(self) -> Option<usize>

Returns None when there is no immediate byte size available for this format, for example on planar buffer formats.

Trait Implementations§

source§

impl Clone for HardwareBufferFormat

source§

fn clone(&self) -> HardwareBufferFormat

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for HardwareBufferFormat

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<HardwareBufferFormat> for i32

source§

fn from(enum_value: HardwareBufferFormat) -> Self

Converts to this type from the input type.
source§

impl From<i32> for HardwareBufferFormat

source§

fn from(number: i32) -> Self

Converts to this type from the input type.
source§

impl FromPrimitive for HardwareBufferFormat

§

type Primitive = i32

source§

fn from_primitive(number: Self::Primitive) -> Self

source§

impl PartialEq for HardwareBufferFormat

source§

fn eq(&self, other: &HardwareBufferFormat) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for HardwareBufferFormat

source§

impl Eq for HardwareBufferFormat

source§

impl StructuralPartialEq for HardwareBufferFormat

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.