| 
						
						
							
								
							
						
						
					 | 
					 | 
					@ -161,7 +161,7 @@ pub struct AuthContext<'a> { | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    /// May be left out if not using auth-int
 | 
					 | 
					 | 
					 | 
					    /// May be left out if not using auth-int
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    pub body: Option<Cow<'a, [u8]>>, | 
					 | 
					 | 
					 | 
					    pub body: Option<Cow<'a, [u8]>>, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    /// HTTP method used (defaults to GET)
 | 
					 | 
					 | 
					 | 
					    /// HTTP method used (defaults to GET)
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    pub method: HttpMethod, | 
					 | 
					 | 
					 | 
					    pub method: HttpMethod<'a>, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    /// Spoofed client nonce (use only for tests; a random nonce is generated automatically)
 | 
					 | 
					 | 
					 | 
					    /// Spoofed client nonce (use only for tests; a random nonce is generated automatically)
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    pub cnonce: Option<Cow<'a, str>>, | 
					 | 
					 | 
					 | 
					    pub cnonce: Option<Cow<'a, str>>, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					} | 
					 | 
					 | 
					 | 
					} | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
					 | 
					@ -202,7 +202,7 @@ impl<'a> AuthContext<'a> { | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        password: PW, | 
					 | 
					 | 
					 | 
					        password: PW, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        uri: UR, | 
					 | 
					 | 
					 | 
					        uri: UR, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        body: Option<BD>, | 
					 | 
					 | 
					 | 
					        body: Option<BD>, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        method: HttpMethod, | 
					 | 
					 | 
					 | 
					        method: HttpMethod<'a>, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    ) -> Self | 
					 | 
					 | 
					 | 
					    ) -> Self | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    where | 
					 | 
					 | 
					 | 
					    where | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        UN: Into<Cow<'a, str>>, | 
					 | 
					 | 
					 | 
					        UN: Into<Cow<'a, str>>, | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					 | 
					
  |