Skip to main content

sark_core/http/head/
parsed.rs

1use std::ops::Range;
2
3use http::{Method, Version};
4
5pub struct ParsedRequest {
6    pub method: Method,
7    pub version: Version,
8    pub path_range: Range<usize>,
9    pub uri_path_end: usize,
10}