pub enum ServerError {
InternalServerError = 500,
NotImplemented = 501,
BadGateway = 502,
ServiceUnavailable = 503,
GatewayTimeout = 504,
HttpVersionNotSupported = 505,
VariantAlsoNegotiates = 506,
WebDavInsufficientStorage = 507,
WebDavLoopDetected = 508,
NotExtended = 510,
NetworkAuthenticationRequired = 511,
}
Variants§
InternalServerError = 500
NotImplemented = 501
BadGateway = 502
GatewayTimeout = 504
HttpVersionNotSupported = 505
VariantAlsoNegotiates = 506
WebDavInsufficientStorage = 507
WebDavLoopDetected = 508
NotExtended = 510
NetworkAuthenticationRequired = 511
Auto Trait Implementations§
impl Freeze for ServerError
impl RefUnwindSafe for ServerError
impl Send for ServerError
impl Sync for ServerError
impl Unpin for ServerError
impl UnwindSafe for ServerError
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