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(fn(&Url) -> bool)

Follow a redirect if the contained function returns true.

Trait Implementations

impl Copy for RedirectPolicy
[src]

impl Debug for RedirectPolicy
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

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