pub enum Redirection {
MultipleChoices = 300,
MovedPermanently = 301,
Found = 302,
SeeOther = 303,
NotModified = 304,
DeprecatedUseProxy = 305,
ReservedUnused306 = 306,
TemporaryRedirect = 307,
PermanentRedirect = 308,
}
Variants§
MultipleChoices = 300
MovedPermanently = 301
Found = 302
SeeOther = 303
NotModified = 304
DeprecatedUseProxy = 305
ReservedUnused306 = 306
TemporaryRedirect = 307
PermanentRedirect = 308
Auto Trait Implementations§
impl Freeze for Redirection
impl RefUnwindSafe for Redirection
impl Send for Redirection
impl Sync for Redirection
impl Unpin for Redirection
impl UnwindSafe for Redirection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more