pub enum StatusCodeKind {
Provisional,
Successful,
Redirection,
RequestFailure,
ServerFailure,
GlobalFailure,
Other,
}Variants§
Trait Implementations§
Source§impl Clone for StatusCodeKind
impl Clone for StatusCodeKind
Source§fn clone(&self) -> StatusCodeKind
fn clone(&self) -> StatusCodeKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StatusCodeKind
impl Debug for StatusCodeKind
Source§impl Ord for StatusCodeKind
impl Ord for StatusCodeKind
Source§fn cmp(&self, other: &StatusCodeKind) -> Ordering
fn cmp(&self, other: &StatusCodeKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StatusCodeKind
impl PartialEq for StatusCodeKind
Source§impl PartialOrd for StatusCodeKind
impl PartialOrd for StatusCodeKind
impl Copy for StatusCodeKind
impl Eq for StatusCodeKind
impl StructuralPartialEq for StatusCodeKind
Auto Trait Implementations§
impl Freeze for StatusCodeKind
impl RefUnwindSafe for StatusCodeKind
impl Send for StatusCodeKind
impl Sync for StatusCodeKind
impl Unpin for StatusCodeKind
impl UnwindSafe for StatusCodeKind
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