struct ArrayToRgb<T> {
rgb_indices: (usize, usize, usize),
limits_red: (T, T),
limits_green: (T, T),
limits_blue: (T, T),
}
Fields
rgb_indices: (usize, usize, usize)
limits_red: (T, T)
limits_green: (T, T)
limits_blue: (T, T)
Trait Implementations
sourceimpl<T> ImageAdapter<T> for ArrayToRgb<T> where
T: Copy + Send + Sub<Output = T> + ToPrimitive,
impl<T> ImageAdapter<T> for ArrayToRgb<T> where
T: Copy + Send + Sub<Output = T> + ToPrimitive,
Auto Trait Implementations
impl<T> RefUnwindSafe for ArrayToRgb<T> where
T: RefUnwindSafe,
impl<T> Send for ArrayToRgb<T> where
T: Send,
impl<T> Sync for ArrayToRgb<T> where
T: Sync,
impl<T> Unpin for ArrayToRgb<T> where
T: Unpin,
impl<T> UnwindSafe for ArrayToRgb<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more