[−][src]Struct image::Bgr 
BGR colors
Trait Implementations
impl<T: Clone + Primitive> Clone for Bgr<T>[src]
impl<T: Copy + Primitive> Copy for Bgr<T>[src]
impl<T: Debug + Primitive> Debug for Bgr<T>[src]
impl<T: Eq + Primitive> Eq for Bgr<T>[src]
impl<T: Primitive + 'static> From<[T; 3]> for Bgr<T>[src]
impl<T: Hash + Primitive> Hash for Bgr<T>[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src]
H: Hasher,
impl<T: Primitive> Index<usize> for Bgr<T>[src]
impl<T: Primitive> IndexMut<usize> for Bgr<T>[src]
impl<T: PartialEq + Primitive> PartialEq<Bgr<T>> for Bgr<T>[src]
impl<T: Primitive + 'static> Pixel for Bgr<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) -> Bgr<T>[src]
fn from_slice(slice: &[T]) -> &Bgr<T>[src]
fn from_slice_mut(slice: &mut [T]) -> &mut Bgr<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) -> Bgr<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) -> Bgr<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) -> Bgr<T> where
    F: FnMut(T, T) -> T, [src]
F: FnMut(T, T) -> T,
fn apply2<F>(&mut self, other: &Bgr<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: &Bgr<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 Bgr<T>[src]
impl<T: Primitive> StructuralPartialEq for Bgr<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Bgr<T> where
    T: RefUnwindSafe, [src]
T: RefUnwindSafe,
impl<T> Send for Bgr<T> where
    T: Send, [src]
T: Send,
impl<T> Sync for Bgr<T> where
    T: Sync, [src]
T: Sync,
impl<T> Unpin for Bgr<T> where
    T: Unpin, [src]
T: Unpin,
impl<T> UnwindSafe for Bgr<T> where
    T: UnwindSafe, [src]
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,
pub 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> Pointable for T[src]
pub const ALIGN: usize[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T[src]
pub unsafe fn drop(ptr: usize)[src]
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,