valence_nbt/
tag.rs

1/// One of the possible NBT data types.
2#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug)]
3#[repr(u8)]
4pub enum Tag {
5    // Variant order is significant!
6    End,
7    Byte,
8    Short,
9    Int,
10    Long,
11    Float,
12    Double,
13    ByteArray,
14    String,
15    List,
16    Compound,
17    IntArray,
18    LongArray,
19}