Enum sass_alt::SassCompileError []

pub enum SassCompileError {
    Unknown,
    Known(CString),
    CssWasNotUtf8(Utf8Error),
}

A compilation error.

Variants

An unknown reason for compilation failure because the underlying libsass library did not provide a reason.

A known reason for compilation failure.

A known reason for compilation failure.

Trait Implementations

impl Debug for SassCompileError
[src]

[src]

Formats the value using the given formatter.

impl Display for SassCompileError

Formats the value using the given formatter. Read more

impl Error for SassCompileError

A short description of the error. Read more

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

impl From<Utf8Error> for SassCompileError

Performs the conversion.