Struct retroimg::color::BackForePalette[][src]

pub struct BackForePalette<B, F>(_, _);

Color depth emulating a combination of one freely selectable background color (B) with any of the other colors (F).

Trait Implementations

impl<B: Clone, F: Clone> Clone for BackForePalette<B, F>[src]

impl<B, F> ColorDepth for BackForePalette<B, F> where
    B: AsRef<[[u8; 3]]>,
    F: AsRef<[[u8; 3]]>, 
[src]

impl<B: Copy, F: Copy> Copy for BackForePalette<B, F>[src]

impl<B: Debug, F: Debug> Debug for BackForePalette<B, F>[src]

Auto Trait Implementations

impl<B, F> RefUnwindSafe for BackForePalette<B, F> where
    B: RefUnwindSafe,
    F: RefUnwindSafe

impl<B, F> Send for BackForePalette<B, F> where
    B: Send,
    F: Send

impl<B, F> Sync for BackForePalette<B, F> where
    B: Sync,
    F: Sync

impl<B, F> Unpin for BackForePalette<B, F> where
    B: Unpin,
    F: Unpin

impl<B, F> UnwindSafe for BackForePalette<B, F> where
    B: UnwindSafe,
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.