yuri 0.1.0

no_std alloc-free URI Parser
Documentation
1
2
3
4
5
6
7
8
//! URI Fragment types

/// Fragment
#[derive(Clone, Debug, PartialEq)]
pub struct Fragment<'uri> {
    /// Raw fragment
    pub raw_fragment: &'uri str,
}