Enum bstring::bfmt::ParseErrorKind [] [src]

pub enum ParseErrorKind {
    MissingCloseBrace,
    UnmatchedCloseBrace,
}

Represents a kind of error generated while parsing a format string.

Variants

An open brace ({) was found without a matching close brace (})

A close brace (}) was found without a matching open brace ({)

Methods

impl ParseErrorKind
[src]

Returns a description of the error.

Trait Implementations

impl Copy for ParseErrorKind
[src]

impl Clone for ParseErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParseErrorKind
[src]

Formats the value using the given formatter.