1 2 3 4 5 6 7 8
//! URI Path types /// Path #[derive(Clone, Debug, PartialEq)] pub struct Path<'uri> { /// Raw path pub raw_path: &'uri str, }