Enum hyper::client::RedirectPolicy  
                   
                       [−]
                   
               [src]
pub enum RedirectPolicy {
    FollowNone,
    FollowAll,
    FollowIf(fn(&Url) -> bool),
}Behavior regarding how to handle redirects within a Client.
Variants
| FollowNone | Don't follow any redirects. | |
| FollowAll | Follow all redirects. | |
| FollowIf | Follow a redirect if the contained function returns true. | 
Trait Implementations
impl Debug for RedirectPolicy[src]
impl Clone for RedirectPolicy[src]
fn clone(&self) -> RedirectPolicy
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for RedirectPolicy[src]
fn default() -> RedirectPolicy
Returns the "default value" for a type. Read more