Enum representing the different types of routing nodes.
A catch-all segment that matches multiple levels (e.g., '[...slug]')
A dynamic segment with a parameter (e.g., ':id' or '[id]')
An optional catch-all segment (e.g., '[[...slug]]')
A literal path segment (e.g., 'users')
A wildcard segment (e.g., '*')
Enum representing the different types of routing nodes.