1use crate::{ 2 anon::Anon, 3 meta::Meta, 4}; 5 6/// Contains the anonymous and metadata terms if they fail to unembed 7#[derive(PartialEq, Clone, Debug)] 8pub enum EmbedError { 9 Term(Anon, Meta), 10}