sass_alt/
InputSyntax.rs

1// This file is part of sass-alt. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/sass-alt/master/COPYRIGHT. No part of predicator, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2017 The developers of sass-alt. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/sass-alt/master/COPYRIGHT.
3
4
5/// A wrapper type to make it much clearer which SASS syntax we expect data to be in.
6/// Replaces the use of a boolean to model data that is `SASS` as opposed to `SCSS`.
7#[derive(Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
8pub enum InputSyntax
9{
10	/// Input data is in SASS syntax.
11	SASS,
12	
13	/// Input data is in SCSS syntax.
14	SCSS,
15}