1use crate::types::ProtoType; 2 3#[derive(Debug, Clone, PartialEq)] 4pub(crate) enum CelType { 5 CelValue, 6 Proto(ProtoType), 7}