1use serde::Serialize; 2 3#[derive(Debug, Serialize, PartialEq, PartialOrd, Eq, Ord, Clone, Copy)] 4pub enum Realm { 5 Client, 6 Server, 7 Plugin, 8}