mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-15 17:49:46 +00:00
20 lines
480 B
Rust
20 lines
480 B
Rust
use super::*;
|
|
|
|
// ANCHOR: util2
|
|
#[salsa::query_group(Request)]
|
|
trait RequestUtil: RequestParser {
|
|
fn header(&self) -> Vec<ParsedHeader>;
|
|
fn content_type(&self) -> Option<String>;
|
|
}
|
|
|
|
fn header(db: &dyn RequestUtil) -> Vec<ParsedHeader> {
|
|
db.parse().header
|
|
}
|
|
|
|
fn content_type(db: &dyn RequestUtil) -> Option<String> {
|
|
db.header()
|
|
.iter()
|
|
.find(|header| header.key == "content-type")
|
|
.map(|header| header.value.clone())
|
|
}
|
|
// ANCHOR_END: util2
|