1
2
3
4
5
6
7
8
9
use crate::Cons;

/// A type-erased variant of element, useful for constructing elements which are
/// not associated with any specific customization.
#[derive(Clone)]
pub enum ErasedElement<'el> {
    /// A borrowed quoted string.
    Quoted(Cons<'el>),
}