Enum pigment64::ImageType

source ·
#[repr(u8)]
pub enum ImageType { I1 = 0, I4 = 1, I8 = 2, Ia4 = 3, Ia8 = 4, Ia16 = 5, Ci4 = 6, Ci8 = 7, Rgba16 = 8, Rgba32 = 9, }
Expand description

Represents the type of image.

This enum is used to specify the type of image, which determines the size and format of the image data. Each variant corresponds to a specific image type, such as indexed color (Ci), grayscale (I), grayscale with alpha (Ia), or red-green-blue-alpha (RGBA).

Variants§

§

I1 = 0

§

I4 = 1

§

I8 = 2

§

Ia4 = 3

§

Ia8 = 4

§

Ia16 = 5

§

Ci4 = 6

§

Ci8 = 7

§

Rgba16 = 8

§

Rgba32 = 9

Implementations§

source§

impl ImageType

source

pub fn get_size(&self) -> ImageSize

Returns the size of the image type.

This function returns the size of the image type, which represents the number of bits used to store each pixel. The size is determined based on the image type variant.

§Returns
  • ImageSize - The size of the image type.
source

pub fn get_format(&self) -> ImageFormat

Returns the format of the image type.

This method returns the format of the image type, which represents the color model used by the image. The format is determined based on the image type variant.

§Returns
  • ImageFormat - The format of the image type.

Trait Implementations§

source§

impl Clone for ImageType

source§

fn clone(&self) -> ImageType

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 ImageType

source§

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

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

impl EnumCount for ImageType

source§

const COUNT: usize = 10usize

source§

impl Hash for ImageType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl IntoEnumIterator for ImageType

source§

impl PartialEq for ImageType

source§

fn eq(&self, other: &ImageType) -> 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 TryFrom<u8> for ImageType

§

type Error = TryFromPrimitiveError<ImageType>

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

fn try_from(number: u8) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
source§

impl TryFromPrimitive for ImageType

§

type Primitive = u8

§

type Error = TryFromPrimitiveError<ImageType>

source§

const NAME: &'static str = "ImageType"

source§

fn try_from_primitive( number: Self::Primitive ) -> Result<Self, TryFromPrimitiveError<Self>>

source§

impl Copy for ImageType

source§

impl Eq for ImageType

source§

impl StructuralPartialEq for ImageType

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.