blob: 037284b144b21a8703f3849061e231c74bcf27d4 (
plain) (
tree)
|
|
//! This module implements the backing representation of runtime
//! values in the Nix language.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Value {
Null,
Bool(bool),
Integer(i64),
Float(f64),
}
|