[−][src]Struct image::Rgb
RGB colors
Trait Implementations
impl<T: Clone + Primitive> Clone for Rgb<T>
[src]
impl<T: Copy + Primitive> Copy for Rgb<T>
[src]
impl<T: Debug + Primitive> Debug for Rgb<T>
[src]
impl<T: Eq + Primitive> Eq for Rgb<T>
[src]
impl<T: Hash + Primitive> Hash for Rgb<T>
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<T: Primitive> Index<usize> for Rgb<T>
[src]
impl<T: Primitive> IndexMut<usize> for Rgb<T>
[src]
impl<T: PartialEq + Primitive> PartialEq<Rgb<T>> for Rgb<T>
[src]
impl<T: Primitive + 'static> Pixel for Rgb<T>
[src]
type Subpixel = T
The underlying subpixel type.
const CHANNEL_COUNT: u8
[src]
const COLOR_MODEL: &'static str
[src]
const COLOR_TYPE: ColorType
[src]
fn channels(&self) -> &[T]
[src]
fn channels_mut(&mut self) -> &mut [T]
[src]
fn channels4(&self) -> (T, T, T, T)
[src]
fn from_channels(a: T, b: T, c: T, d: T) -> Rgb<T>
[src]
fn from_slice(slice: &[T]) -> &Rgb<T>
[src]
fn from_slice_mut(slice: &mut [T]) -> &mut Rgb<T>
[src]
fn to_rgb(&self) -> Rgb<T>
[src]
fn to_bgr(&self) -> Bgr<T>
[src]
fn to_rgba(&self) -> Rgba<T>
[src]
fn to_bgra(&self) -> Bgra<T>
[src]
fn to_luma(&self) -> Luma<T>
[src]
fn to_luma_alpha(&self) -> LumaA<T>
[src]
fn map<F>(&self, f: F) -> Rgb<T> where
F: FnMut(T) -> T,
[src]
F: FnMut(T) -> T,
fn apply<F>(&mut self, f: F) where
F: FnMut(T) -> T,
[src]
F: FnMut(T) -> T,
fn map_with_alpha<F, G>(&self, f: F, g: G) -> Rgb<T> where
F: FnMut(T) -> T,
G: FnMut(T) -> T,
[src]
F: FnMut(T) -> T,
G: FnMut(T) -> T,
fn apply_with_alpha<F, G>(&mut self, f: F, g: G) where
F: FnMut(T) -> T,
G: FnMut(T) -> T,
[src]
F: FnMut(T) -> T,
G: FnMut(T) -> T,
fn map2<F>(&self, other: &Self, f: F) -> Rgb<T> where
F: FnMut(T, T) -> T,
[src]
F: FnMut(T, T) -> T,
fn apply2<F>(&mut self, other: &Rgb<T>, f: F) where
F: FnMut(T, T) -> T,
[src]
F: FnMut(T, T) -> T,
fn invert(&mut self)
[src]
fn blend(&mut self, other: &Rgb<T>)
[src]
fn channel_count() -> u8
[src]
fn color_model() -> &'static str
[src]
fn color_type() -> ColorType
[src]
fn map_without_alpha<F>(&self, f: F) -> Self where
F: FnMut(Self::Subpixel) -> Self::Subpixel,
[src]
F: FnMut(Self::Subpixel) -> Self::Subpixel,
fn apply_without_alpha<F>(&mut self, f: F) where
F: FnMut(Self::Subpixel) -> Self::Subpixel,
[src]
F: FnMut(Self::Subpixel) -> Self::Subpixel,
impl<T: Primitive> StructuralEq for Rgb<T>
[src]
impl<T: Primitive> StructuralPartialEq for Rgb<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Rgb<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Rgb<T> where
T: Send,
T: Send,
impl<T> Sync for Rgb<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Rgb<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Rgb<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> SetParameter for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,