Enum svgdom::ListSeparator[][src]

pub enum ListSeparator {
    Comma,
    Space,
    CommaSpace,
}

A separator type for a list of values.

https://www.w3.org/TR/SVG/types.html#DataTypeList

Variants

10,20

10 20

10, 20

Trait Implementations

impl Clone for ListSeparator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListSeparator
[src]

Formats the value using the given formatter. Read more

impl Copy for ListSeparator
[src]

impl PartialEq<ListSeparator> for ListSeparator
[src]

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

This method tests for !=.

Auto Trait Implementations