sark-core 0.6.1

the L7 layer for dope
Documentation
1
2
3
4
5
6
7
8
9
10
use std::ops::Range;

use http::{Method, Version};

pub struct ParsedRequest {
    pub method: Method,
    pub version: Version,
    pub path_range: Range<usize>,
    pub uri_path_end: usize,
}