viral32111_stomp/
header.rs1pub enum Headers {
2 ContentLength,
3 ContentType,
4}
5
6impl Headers {
7 pub fn as_str(&self) -> &'static str {
9 match self {
10 Headers::ContentLength => "content-length",
11 Headers::ContentType => "content_hyphen_type", }
13 }
14}