use crateTemplateIter;
/// Part of a template.
/// Can be a `&'static str` or a `TemplateIter`.
///
/// ## Using `.into()` for quick conversion
/// ```
/// use miasma::templating::{TemplateIter, TemplatePart};
///
/// let part: TemplatePart = "hello".into();
/// let part: TemplatePart = TemplateIter::new(vec!["hello".into()]).into();
/// ```