Struct Rgb
#[repr(C)]pub struct Rgb<T>(pub [T; 3]);
Expand description
RGB colors.
For the purpose of color conversion, as well as blending, the implementation of Pixel
assumes an sRGB
color space of its data.
Tuple Fields§
§0: [T; 3]
Trait Implementations§
Source§impl<T> ArrayData for Rgb<T>
impl<T> ArrayData for Rgb<T>
Source§type DataType = [T; 3]
type DataType = [T; 3]
The type of the data for this array.
e.g.
[T; 1]
for Luma
, [T; 3]
for Rgb
.Source§fn data(&self) -> <Rgb<T> as ArrayData>::DataType
fn data(&self) -> <Rgb<T> as ArrayData>::DataType
Get the data from this pixel as a constant length array.
Source§impl<T> Pixel for Rgb<T>where
T: Primitive + Enlargeable,
impl<T> Pixel for Rgb<T>where
T: Primitive + Enlargeable,
Source§const CHANNEL_COUNT: u8 = 3u8
const CHANNEL_COUNT: u8 = 3u8
The number of channels of this pixel type.
Source§const COLOR_MODEL: &'static str = "RGB"
const COLOR_MODEL: &'static str = "RGB"
A string that can help to interpret the meaning each channel
See gimp babl.
Source§fn channels_mut(&mut self) -> &mut [T]
fn channels_mut(&mut self) -> &mut [T]
Returns the components as a mutable slice
Source§fn channels4(&self) -> (T, T, T, T)
fn channels4(&self) -> (T, T, T, T)
👎Deprecated since 0.24.0: Use
channels()
or channels_mut()
Returns the channels of this pixel as a 4 tuple. If the pixel
has less than 4 channels the remainder is filled with the maximum value
Source§fn from_channels(a: T, b: T, c: T, d: T) -> Rgb<T>
fn from_channels(a: T, b: T, c: T, d: T) -> Rgb<T>
👎Deprecated since 0.24.0: Use the constructor of the pixel, for example
Rgba([r,g,b,a])
or Pixel::from_slice
Construct a pixel from the 4 channels a, b, c and d.
If the pixel does not contain 4 channels the extra are ignored.
Source§fn from_slice_mut(slice: &mut [T]) -> &mut Rgb<T>
fn from_slice_mut(slice: &mut [T]) -> &mut Rgb<T>
Returns mutable view into a mutable slice. Read more
Source§fn to_luma_alpha(&self) -> LumaA<T>
fn to_luma_alpha(&self) -> LumaA<T>
Convert this pixel to luma with an alpha channel
Source§fn map<F>(&self, f: F) -> Rgb<T>where
F: FnMut(T) -> T,
fn map<F>(&self, f: F) -> Rgb<T>where
F: FnMut(T) -> T,
Apply the function
f
to each channel of this pixel.Source§fn apply<F>(&mut self, f: F)where
F: FnMut(T) -> T,
fn apply<F>(&mut self, f: F)where
F: FnMut(T) -> T,
Apply the function
f
to each channel of this pixel.Source§fn map_with_alpha<F, G>(&self, f: F, g: G) -> Rgb<T>
fn map_with_alpha<F, G>(&self, f: F, g: G) -> Rgb<T>
Apply the function
f
to each channel except the alpha channel.
Apply the function g
to the alpha channel.Source§fn apply_with_alpha<F, G>(&mut self, f: F, g: G)
fn apply_with_alpha<F, G>(&mut self, f: F, g: G)
Apply the function
f
to each channel except the alpha channel.
Apply the function g
to the alpha channel. Works in-place.Source§fn map2<F>(&self, other: &Rgb<T>, f: F) -> Rgb<T>where
F: FnMut(T, T) -> T,
fn map2<F>(&self, other: &Rgb<T>, f: F) -> Rgb<T>where
F: FnMut(T, T) -> T,
Apply the function
f
to each channel of this pixel and
other
pairwise.Source§fn apply2<F>(&mut self, other: &Rgb<T>, f: F)where
F: FnMut(T, T) -> T,
fn apply2<F>(&mut self, other: &Rgb<T>, f: F)where
F: FnMut(T, T) -> T,
Apply the function
f
to each channel of this pixel and
other
pairwise. Works in-place.Source§fn blend(&mut self, other: &Rgb<T>)
fn blend(&mut self, other: &Rgb<T>)
Blend the color of a given pixel into ourself, taking into account alpha channels
Source§fn map_without_alpha<F>(&self, f: F) -> Self
fn map_without_alpha<F>(&self, f: F) -> Self
Apply the function
f
to each channel except the alpha channel.Source§impl PixelWithColorType for Rgb<f32>
impl PixelWithColorType for Rgb<f32>
Source§const COLOR_TYPE: ColorType = ColorType::Rgb32F
const COLOR_TYPE: ColorType = ColorType::Rgb32F
This pixel has the format of one of the predefined
ColorType
s,
such as Rgb8
, La16
or Rgba32F
.
This is needed for automatically detecting
a color format when saving an image as a file.Source§impl PixelWithColorType for Rgb<u16>
impl PixelWithColorType for Rgb<u16>
Source§const COLOR_TYPE: ColorType = ColorType::Rgb16
const COLOR_TYPE: ColorType = ColorType::Rgb16
This pixel has the format of one of the predefined
ColorType
s,
such as Rgb8
, La16
or Rgba32F
.
This is needed for automatically detecting
a color format when saving an image as a file.Source§impl PixelWithColorType for Rgb<u8>
impl PixelWithColorType for Rgb<u8>
Source§const COLOR_TYPE: ColorType = ColorType::Rgb8
const COLOR_TYPE: ColorType = ColorType::Rgb8
This pixel has the format of one of the predefined
ColorType
s,
such as Rgb8
, La16
or Rgba32F
.
This is needed for automatically detecting
a color format when saving an image as a file.Source§impl<T, U> WithChannel<U> for Rgb<T>
impl<T, U> WithChannel<U> for Rgb<T>
impl<T> Copy for Rgb<T>where
T: Copy,
impl<T> Eq for Rgb<T>where
T: Eq,
impl<T> StructuralPartialEq for Rgb<T>
Auto Trait Implementations§
impl<T> Freeze for Rgb<T>where
T: Freeze,
impl<T> RefUnwindSafe for Rgb<T>where
T: RefUnwindSafe,
impl<T> Send for Rgb<T>where
T: Send,
impl<T> Sync for Rgb<T>where
T: Sync,
impl<T> Unpin for Rgb<T>where
T: Unpin,
impl<T> UnwindSafe for Rgb<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
Source§fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
Convert the given value into an approximately equivalent representation.
Source§impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
Source§type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
The error type produced by a failed conversion.
Source§fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
Convert the subject into an approximately equivalent representation.
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> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
Source§impl<T> ConvUtil for T
impl<T> ConvUtil for T
Source§fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
Approximate the subject to a given type with the default scheme.
Source§fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
Approximate the subject to a given type with a specific scheme.
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
Convert
&self
to an expression for Diesel’s query builder. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.