Enum draw_state::state::RasterMethod [] [src]

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

How to rasterize a primitive.

Variants

Point

Rasterize as a point.

Line

Rasterize as a line with the given width.

Fill

Rasterize as a face.

Trait Implementations

Derived Implementations

impl PartialOrd for RasterMethod

fn partial_cmp(&self, __arg_0: &RasterMethod) -> Option<Ordering>

fn lt(&self, __arg_0: &RasterMethod) -> bool

fn le(&self, __arg_0: &RasterMethod) -> bool

fn gt(&self, __arg_0: &RasterMethod) -> bool

fn ge(&self, __arg_0: &RasterMethod) -> bool

impl Eq for RasterMethod

impl PartialEq for RasterMethod

fn eq(&self, __arg_0: &RasterMethod) -> bool

fn ne(&self, __arg_0: &RasterMethod) -> bool

impl Hash for RasterMethod

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

1.3.0fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Debug for RasterMethod

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for RasterMethod

fn clone(&self) -> RasterMethod

1.0.0fn clone_from(&mut self, source: &Self)

impl Copy for RasterMethod