Enum fire_http::error::ServerErrorKind
source · pub enum ServerErrorKind {
InternalServerError,
NotImplemented,
BadGateway,
ServiceUnavailable,
GatewayTimeout,
}Variants
Trait Implementations
sourceimpl Clone for ServerErrorKind
impl Clone for ServerErrorKind
sourcefn clone(&self) -> ServerErrorKind
fn clone(&self) -> ServerErrorKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ServerErrorKind
impl Debug for ServerErrorKind
sourceimpl From<ServerErrorKind> for ErrorKind
impl From<ServerErrorKind> for ErrorKind
sourcefn from(k: ServerErrorKind) -> Self
fn from(k: ServerErrorKind) -> Self
Converts to this type from the input type.
sourceimpl From<ServerErrorKind> for StatusCode
impl From<ServerErrorKind> for StatusCode
sourcefn from(k: ServerErrorKind) -> Self
fn from(k: ServerErrorKind) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ServerErrorKind> for ServerErrorKind
impl PartialEq<ServerErrorKind> for ServerErrorKind
sourcefn eq(&self, other: &ServerErrorKind) -> bool
fn eq(&self, other: &ServerErrorKind) -> bool
impl Copy for ServerErrorKind
impl Eq for ServerErrorKind
impl StructuralEq for ServerErrorKind
impl StructuralPartialEq for ServerErrorKind
Auto Trait Implementations
impl RefUnwindSafe for ServerErrorKind
impl Send for ServerErrorKind
impl Sync for ServerErrorKind
impl Unpin for ServerErrorKind
impl UnwindSafe for ServerErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.