less-rs 0.0.0

A Rust implementation of the Less CSS preprocessor.
Documentation
use std::marker::PhantomData;

#[derive(Debug)]
enum Op {
  Add,
}

#[derive(Debug)]
struct Operation {
  op: Op,
  operands: Vec<()>,
}

/// Less Expression
///
/// For example, this is an binary operation:
///
/// 12px + 32px;
#[derive(Debug)]
pub struct Expression<'i> {
  value: Vec<Operation>,
  _data: PhantomData<&'i ()>,
}