1#[derive(Clone, Debug, PartialEq, Eq, Hash)] 2pub enum InterpolPart<T> { 3 Literal(T), 4 Interpolation(super::Interpol), 5}