* fix `extern crate` declaration for rustc-serialize * enable `into_cow` feature * replace as_slice() calls by as_ref and enable `convert` feature * use `core` feature in doc tests
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use method::Method;
 | |
| 
 | |
| /// The `Allow` header.
 | |
| /// See also https://tools.ietf.org/html/rfc7231#section-7.4.1
 | |
| 
 | |
| #[derive(Clone, PartialEq, Debug)]
 | |
| pub struct Allow(pub Vec<Method>);
 | |
| 
 | |
| impl_list_header!(Allow,
 | |
|                   "Allow",
 | |
|                   Vec<Method>);
 | |
| 
 | |
| #[cfg(test)]
 | |
| mod tests {
 | |
|     use super::Allow;
 | |
|     use header::Header;
 | |
|     use method::Method::{self, Options, Get, Put, Post, Delete, Head, Trace, Connect, Patch, Extension};
 | |
| 
 | |
|     #[test]
 | |
|     fn test_allow() {
 | |
|         let mut allow: Option<Allow>;
 | |
| 
 | |
|         allow = Header::parse_header([b"OPTIONS,GET,PUT,POST,DELETE,HEAD,TRACE,CONNECT,PATCH,fOObAr".to_vec()].as_ref());
 | |
|         assert_eq!(allow, Some(Allow(vec![Options, Get, Put, Post, Delete, Head, Trace, Connect, Patch, Extension("fOObAr".to_string())])));
 | |
| 
 | |
|         allow = Header::parse_header([b"".to_vec()].as_ref());
 | |
|         assert_eq!(allow, Some(Allow(Vec::<Method>::new())));
 | |
|     }
 | |
| }
 | |
| 
 | |
| bench_header!(bench, Allow, { vec![b"OPTIONS,GET,PUT,POST,DELETE,HEAD,TRACE,CONNECT,PATCH,fOObAr".to_vec()] });
 |