Enum inline_assets::FilePathError[][src]

pub enum FilePathError {
    InvalidPath(String),
    FileReadError(StringError),
    RepeatedFile,
}

Augmented std::io::Error so that it shows what line is causing the problem.

Variants

A std::io::ErrorKind::NotFound error with the offending line in the string parameter

Any other file read error that is not NotFound

A css file is imported twice, or there is a dependency loop

Trait Implementations

impl Debug for FilePathError
[src]

Formats the value using the given formatter. Read more

impl Error for FilePathError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for FilePathError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for FilePathError
[src]

Performs the conversion.

Auto Trait Implementations