1
2
3
4
5
6
pub enum PathSegment<T> {
    Root,
    Self_,
    Super,
    Other(T)
}