Enum sass_alt::SassImport [] [src]

pub enum SassImport<'a, P: AsRef<Path>> {
    RelativePath(P),
    AbsolutePath(P),
    Source(&'a CStr),
}

Represents the three different kinds of SassImport.

Variants

Import is a relative path.

Import is an absolute path.

Import refers to a buffer of SCSS / SASS source bytes.

Methods

impl<'a, P: AsRef<Path>> SassImport<'a, P>
[src]

[src]

Create a SassImportEntry.