pub trait HttpRequestExt {
// Required method
fn follow_redirects(self, follow: RedirectPolicy) -> Self;
}
Required Methods§
Sourcefn follow_redirects(self, follow: RedirectPolicy) -> Self
fn follow_redirects(self, follow: RedirectPolicy) -> Self
Whether or not to follow redirects
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.