#[repr(C)]
pub struct Pixel<T, C, const COUNT_OF_COMPONENTS: usize>(pub T, _) where T: Sized + Copy + Clone + PartialEq + 'static, C: PixelComponent;
Expand description

Generic type of pixel.

Tuple Fields§

§0: T

Implementations§

source§

impl<T, C, const COUNT_OF_COMPONENTS: usize> Pixel<T, C, COUNT_OF_COMPONENTS>
where T: Sized + Copy + Clone + PartialEq + 'static, C: PixelComponent,

source

pub const fn new(v: T) -> Self

Trait Implementations§

source§

impl<T, C, const COUNT_OF_COMPONENTS: usize> Clone for Pixel<T, C, COUNT_OF_COMPONENTS>
where T: Sized + Copy + Clone + PartialEq + 'static + Clone, C: PixelComponent + Clone,

source§

fn clone(&self) -> Pixel<T, C, COUNT_OF_COMPONENTS>

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<T, C, const COUNT_OF_COMPONENTS: usize> PartialEq for Pixel<T, C, COUNT_OF_COMPONENTS>
where T: Sized + Copy + Clone + PartialEq + 'static + PartialEq, C: PixelComponent + PartialEq,

source§

fn eq(&self, other: &Pixel<T, C, COUNT_OF_COMPONENTS>) -> 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<T, C, const COUNT_OF_COMPONENTS: usize> PixelExt for Pixel<T, C, COUNT_OF_COMPONENTS>
where Self: IntoPixelType + Debug, T: Sized + Copy + Clone + PartialEq + 'static, C: PixelComponent,

§

type Component = C

Type of pixel components
§

type CountOfComponents = Count<COUNT_OF_COMPONENTS>

Type that provides information about a count of pixel’s components
source§

fn count_of_components() -> usize

Count of pixel’s components
source§

fn count_of_component_values() -> usize

Count of available values of one pixel’s component
source§

fn size() -> usize

Size of pixel in bytes Read more
source§

fn components(buf: &[Self]) -> &[Self::Component]

Create slice of pixel’s components from slice of pixels
source§

fn components_mut(buf: &mut [Self]) -> &mut [Self::Component]

Create mutable slice of pixel’s components from mutable slice of pixels
source§

impl<T, C, const COUNT_OF_COMPONENTS: usize> Copy for Pixel<T, C, COUNT_OF_COMPONENTS>
where T: Sized + Copy + Clone + PartialEq + 'static + Copy, C: PixelComponent + Copy,

source§

impl<T, C, const COUNT_OF_COMPONENTS: usize> StructuralPartialEq for Pixel<T, C, COUNT_OF_COMPONENTS>
where T: Sized + Copy + Clone + PartialEq + 'static, C: PixelComponent,

Auto Trait Implementations§

§

impl<T, C, const COUNT_OF_COMPONENTS: usize> RefUnwindSafe for Pixel<T, C, COUNT_OF_COMPONENTS>

§

impl<T, C, const COUNT_OF_COMPONENTS: usize> Send for Pixel<T, C, COUNT_OF_COMPONENTS>
where C: Send, T: Send,

§

impl<T, C, const COUNT_OF_COMPONENTS: usize> Sync for Pixel<T, C, COUNT_OF_COMPONENTS>
where C: Sync, T: Sync,

§

impl<T, C, const COUNT_OF_COMPONENTS: usize> Unpin for Pixel<T, C, COUNT_OF_COMPONENTS>
where C: Unpin, T: Unpin,

§

impl<T, C, const COUNT_OF_COMPONENTS: usize> UnwindSafe for Pixel<T, C, COUNT_OF_COMPONENTS>
where C: UnwindSafe, T: UnwindSafe,

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.