#[repr(C)]pub struct Gray<ComponentType>(pub ComponentType);
Expand description
Grayscale. Use .0
or *
(deref) to access the value.
Tuple Fields§
§0: ComponentType
brightness level
Implementations§
Trait Implementations§
source§impl<T> AddAssign<Gray<T>> for Gray<T>where
T: Add<Output = T> + Copy,
impl<T> AddAssign<Gray<T>> for Gray<T>where T: Add<Output = T> + Copy,
px + px
source§fn add_assign(&mut self, other: Gray<T>)
fn add_assign(&mut self, other: Gray<T>)
Performs the
+=
operation. Read moresource§impl<T> AddAssign<T> for Gray<T>where
T: Copy + Add<Output = T>,
impl<T> AddAssign<T> for Gray<T>where T: Copy + Add<Output = T>,
px + 1
source§fn add_assign(&mut self, r: T)
fn add_assign(&mut self, r: T)
Performs the
+=
operation. Read moresource§impl<T> AsPixels<Gray<T>> for [T]
impl<T> AsPixels<Gray<T>> for [T]
source§fn as_pixels(&self) -> &[Gray<T>]
fn as_pixels(&self) -> &[Gray<T>]
Reinterpret the slice as a read-only/shared slice of pixels.
Multiple consecutive elements in the slice are intepreted as a single pixel
(depending on format, e.g. 3 for RGB, 4 for RGBA). Read more
source§fn as_pixels_mut(&mut self) -> &mut [Gray<T>]
fn as_pixels_mut(&mut self) -> &mut [Gray<T>]
Reinterpret the slice as a mutable/exclusive slice of pixels.
Multiple consecutive elements in the slice are intepreted as a single pixel
(depending on format, e.g. 3 for RGB, 4 for RGBA). Read more
source§impl<T> ComponentSlice<T> for Gray<T>
impl<T> ComponentSlice<T> for Gray<T>
source§impl<'de, ComponentType> Deserialize<'de> for Gray<ComponentType>where
ComponentType: Deserialize<'de>,
impl<'de, ComponentType> Deserialize<'de> for Gray<ComponentType>where ComponentType: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T> DivAssign<T> for Gray<T>where
T: Copy + Div<Output = T>,
impl<T> DivAssign<T> for Gray<T>where T: Copy + Div<Output = T>,
px * 1
source§fn div_assign(&mut self, r: T)
fn div_assign(&mut self, r: T)
Performs the
/=
operation. Read moresource§impl<T> MulAssign<Gray<T>> for Gray<T>where
T: Mul<Output = T> + Copy,
impl<T> MulAssign<Gray<T>> for Gray<T>where T: Mul<Output = T> + Copy,
px * px
source§fn mul_assign(&mut self, other: Gray<T>)
fn mul_assign(&mut self, other: Gray<T>)
Performs the
*=
operation. Read moresource§impl<T> MulAssign<T> for Gray<T>where
T: Copy + Mul<Output = T>,
impl<T> MulAssign<T> for Gray<T>where T: Copy + Mul<Output = T>,
px * 1
source§fn mul_assign(&mut self, r: T)
fn mul_assign(&mut self, r: T)
Performs the
*=
operation. Read moresource§impl<ComponentType: Ord> Ord for Gray<ComponentType>
impl<ComponentType: Ord> Ord for Gray<ComponentType>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<ComponentType: PartialEq> PartialEq<Gray<ComponentType>> for Gray<ComponentType>
impl<ComponentType: PartialEq> PartialEq<Gray<ComponentType>> for Gray<ComponentType>
source§impl<ComponentType: PartialOrd> PartialOrd<Gray<ComponentType>> for Gray<ComponentType>
impl<ComponentType: PartialOrd> PartialOrd<Gray<ComponentType>> for Gray<ComponentType>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<T> SubAssign<Gray<T>> for Gray<T>where
T: Sub<Output = T> + Copy,
impl<T> SubAssign<Gray<T>> for Gray<T>where T: Sub<Output = T> + Copy,
px - px
source§fn sub_assign(&mut self, other: Gray<T>)
fn sub_assign(&mut self, other: Gray<T>)
Performs the
-=
operation. Read moresource§impl<T> SubAssign<T> for Gray<T>where
T: Copy + Sub<Output = T>,
impl<T> SubAssign<T> for Gray<T>where T: Copy + Sub<Output = T>,
px - 1
source§fn sub_assign(&mut self, r: T)
fn sub_assign(&mut self, r: T)
Performs the
-=
operation. Read moreimpl<ComponentType: Copy> Copy for Gray<ComponentType>
impl<ComponentType: Eq> Eq for Gray<ComponentType>
impl<ComponentType> StructuralEq for Gray<ComponentType>
impl<ComponentType> StructuralPartialEq for Gray<ComponentType>
Auto Trait Implementations§
impl<ComponentType> RefUnwindSafe for Gray<ComponentType>where ComponentType: RefUnwindSafe,
impl<ComponentType> Send for Gray<ComponentType>where ComponentType: Send,
impl<ComponentType> Sync for Gray<ComponentType>where ComponentType: Sync,
impl<ComponentType> Unpin for Gray<ComponentType>where ComponentType: Unpin,
impl<ComponentType> UnwindSafe for Gray<ComponentType>where ComponentType: UnwindSafe,
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