pub trait BitmapDrawModeExt {
    const Copy: BitmapDrawMode = BitmapDrawMode::kDrawModeCopy;
    const WhiteTransparent: BitmapDrawMode = BitmapDrawMode::kDrawModeWhiteTransparent;
    const BlackTransparent: BitmapDrawMode = BitmapDrawMode::kDrawModeBlackTransparent;
    const FillWhite: BitmapDrawMode = BitmapDrawMode::kDrawModeFillWhite;
    const FillBlack: BitmapDrawMode = BitmapDrawMode::kDrawModeFillBlack;
    const XOR: BitmapDrawMode = BitmapDrawMode::kDrawModeXOR;
    const NXOR: BitmapDrawMode = BitmapDrawMode::kDrawModeNXOR;
    const Inverted: BitmapDrawMode = BitmapDrawMode::kDrawModeInverted;
}

Provided Associated Constants§

source

const Copy: BitmapDrawMode = BitmapDrawMode::kDrawModeCopy

source

const WhiteTransparent: BitmapDrawMode = BitmapDrawMode::kDrawModeWhiteTransparent

source

const BlackTransparent: BitmapDrawMode = BitmapDrawMode::kDrawModeBlackTransparent

source

const FillWhite: BitmapDrawMode = BitmapDrawMode::kDrawModeFillWhite

source

const FillBlack: BitmapDrawMode = BitmapDrawMode::kDrawModeFillBlack

source

const XOR: BitmapDrawMode = BitmapDrawMode::kDrawModeXOR

source

const NXOR: BitmapDrawMode = BitmapDrawMode::kDrawModeNXOR

source

const Inverted: BitmapDrawMode = BitmapDrawMode::kDrawModeInverted

Object Safety§

This trait is not object safe.

Implementors§