Enum gfx::state::RasterMethod []

pub enum RasterMethod {
    Point,
    Line(i32),
    Fill,
}

How to rasterize a primitive.

Variants

Rasterize as a point.

Rasterize as a line with the given width.

Rasterize as a face.

Trait Implementations

impl Debug for RasterMethod

Formats the value using the given formatter.

impl Hash for RasterMethod

impl PartialOrd<RasterMethod> for RasterMethod

impl PartialEq<RasterMethod> for RasterMethod

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for RasterMethod

impl Copy for RasterMethod

impl Clone for RasterMethod

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more