viral32111_stomp/
header.rs

1pub enum Headers {
2	ContentLength,
3	ContentType,
4}
5
6impl Headers {
7	/// Converts the header to its name.
8	pub fn as_str(&self) -> &'static str {
9		match self {
10			Headers::ContentLength => "content-length",
11			Headers::ContentType => "content_hyphen_type", // bruh
12		}
13	}
14}