Enum nom_hpgl::FillType [] [src]

pub enum FillType {
    SolidBidirectional,
    SolidUnidirectional,
    Hatched {
        spacing: f32,
        angle: f32,
    },
    CrossHatched {
        spacing: f32,
        angle: f32,
    },
    Shading {
        shading_level: f32,
    },
    UserDefinedRF {
        index: u8,
        pen_flag: Option<bool>,
    },
    PredefinedImportedPCL(u8),
    UserDefinedPCL(u8),
}

Variants

Fields of Hatched

Fields of CrossHatched

Fields of Shading

Fields of UserDefinedRF

Trait Implementations

impl Debug for FillType
[src]

[src]

Formats the value using the given formatter.

impl Copy for FillType
[src]

impl Clone for FillType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for FillType
[src]

[src]

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

[src]

This method tests for !=.

impl Default for FillType
[src]

[src]

Returns the "default value" for a type. Read more