Enum java_properties::LineContent [] [src]

pub enum LineContent {
    Comment(String),
    KVPair(StringString),
}

Parsed content of the line.

Variants

Content of a comment line.

Content of a key/value line.

Trait Implementations

impl PartialEq for LineContent
[src]

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

This method tests for !=.

impl Eq for LineContent
[src]

impl PartialOrd for LineContent
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for LineContent
[src]

This method returns an Ordering between self and other. Read more

impl Debug for LineContent
[src]

Formats the value using the given formatter.

impl Display for LineContent
[src]

Formats the value using the given formatter. Read more