[][src]Struct tdesktop_theme::ParseError

pub struct ParseError {
    pub message: &'static str,
    pub line: Option<usize>,
    pub column: Option<usize>,
}

Represents an error occured during parsing.

Reasons parsing may fail

  • Absence of the file colors.tdesktop-theme if the parser was given an archive;
  • Bad formatting of the palette file (it's <variable>:<color>;, with any number of whitespaces between tokens, and also C-style comments);
  • Wrong format of colors (they may only be #rrggbb or #rrggbbaa);
  • Wrong format of variable names (they may only contain latin letters, digits and the underscore symbol (_)).

Fields

message: &'static str

Contains a message explaining why parsing failed.

line: Option<usize>

If possible, the parser will report the line of the contents where parsing failed.

column: Option<usize>

If possible, the parser will report the column of the contents where parsing failed.

Trait Implementations

impl Debug for ParseError[src]

impl Display for ParseError[src]

impl Error for ParseError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.