1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use crate::hash::Hash;
use std::fmt;

/// Type information about a value, that can be printed for human consumption
/// through its [Display][fmt::Display] implementation.
#[derive(Debug, Clone, Copy)]
pub enum ValueTypeInfo {
    /// An empty value indicating nothing.
    Unit,
    /// A string.
    String,
    /// An array.
    Array,
    /// An object.
    Object,
    /// A number.
    Integer,
    /// A float.
    Float,
    /// A boolean.
    Bool,
    /// A character.
    Char,
    /// Reference to a foreign type.
    External(&'static str),
    /// The type of a value.
    Type,
    /// A pointer to the stack.
    Ptr,
    /// A function.
    Fn(Hash),
    /// A future.
    Future,
}

impl fmt::Display for ValueTypeInfo {
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        match *self {
            ValueTypeInfo::Unit => {
                write!(fmt, "unit")?;
            }
            ValueTypeInfo::String => {
                write!(fmt, "String")?;
            }
            ValueTypeInfo::Array => {
                write!(fmt, "Array")?;
            }
            ValueTypeInfo::Object => {
                write!(fmt, "Object")?;
            }
            ValueTypeInfo::Integer => {
                write!(fmt, "int")?;
            }
            ValueTypeInfo::Float => {
                write!(fmt, "float")?;
            }
            ValueTypeInfo::Bool => {
                write!(fmt, "bool")?;
            }
            ValueTypeInfo::Char => {
                write!(fmt, "char")?;
            }
            ValueTypeInfo::External(type_name) => {
                write!(fmt, "{}", type_name)?;
            }
            ValueTypeInfo::Type => {
                write!(fmt, "type")?;
            }
            ValueTypeInfo::Ptr => {
                write!(fmt, "ptr")?;
            }
            ValueTypeInfo::Fn(hash) => {
                write!(fmt, "fn({})", hash)?;
            }
            ValueTypeInfo::Future => {
                write!(fmt, "future")?;
            }
        }

        Ok(())
    }
}