yuri 0.1.0

no_std alloc-free URI Parser
Documentation
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,
}