is_tree/path/
segment.rs

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