1#[derive(Debug, Clone, Copy, PartialEq, Eq)] 2pub enum BrineTreeError { 3 InvalidArgument, 4 TreeFull, 5 InvalidProof, 6 ProofLength, 7} 8 9pub type ProgramResult = Result<(), BrineTreeError>;