mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
385 B
Rust
15 lines
385 B
Rust
|
#![crate_name="req"]
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
use std::cell::RefCell;
|
||
|
use std::collections::HashMap;
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
pub type header_map = HashMap<String, Rc<RefCell<Vec<Rc<String>>>>>;
|
||
|
|
||
|
// the unused ty param is necessary so this gets monomorphized
|
||
|
pub fn request<T>(req: &header_map) {
|
||
|
let data = req[&"METHOD".to_string()].clone();
|
||
|
let _x = data.borrow().clone()[0].clone();
|
||
|
}
|