1
2
3
4
5
6
7
use crate::{Body, Comment};

#[derive(Clone, Debug, PartialEq)]
pub enum Fragment {
    Body(Body),
    Comment(Comment),
}