Struct tiny_http::StatusCode [−][src]
pub struct StatusCode(pub u16);
Expand description
Status code of a request or response.
Implementations
impl StatusCode
[src]
impl StatusCode
[src]pub fn default_reason_phrase(&self) -> &'static str
[src]
pub fn default_reason_phrase(&self) -> &'static str
[src]Returns the default reason phrase for this status code. For example the status code 404 corresponds to “Not Found”.
Trait Implementations
impl Clone for StatusCode
[src]
impl Clone for StatusCode
[src]fn clone(&self) -> StatusCode
[src]
fn clone(&self) -> StatusCode
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for StatusCode
[src]
impl Debug for StatusCode
[src]impl From<i16> for StatusCode
[src]
impl From<i16> for StatusCode
[src]fn from(in_code: i16) -> StatusCode
[src]
fn from(in_code: i16) -> StatusCode
[src]Performs the conversion.
impl From<i32> for StatusCode
[src]
impl From<i32> for StatusCode
[src]fn from(in_code: i32) -> StatusCode
[src]
fn from(in_code: i32) -> StatusCode
[src]Performs the conversion.
impl From<i8> for StatusCode
[src]
impl From<i8> for StatusCode
[src]fn from(in_code: i8) -> StatusCode
[src]
fn from(in_code: i8) -> StatusCode
[src]Performs the conversion.
impl From<u16> for StatusCode
[src]
impl From<u16> for StatusCode
[src]fn from(in_code: u16) -> StatusCode
[src]
fn from(in_code: u16) -> StatusCode
[src]Performs the conversion.
impl From<u32> for StatusCode
[src]
impl From<u32> for StatusCode
[src]fn from(in_code: u32) -> StatusCode
[src]
fn from(in_code: u32) -> StatusCode
[src]Performs the conversion.
impl From<u8> for StatusCode
[src]
impl From<u8> for StatusCode
[src]fn from(in_code: u8) -> StatusCode
[src]
fn from(in_code: u8) -> StatusCode
[src]Performs the conversion.
impl Ord for StatusCode
[src]
impl Ord for StatusCode
[src]impl PartialEq<StatusCode> for StatusCode
[src]
impl PartialEq<StatusCode> for StatusCode
[src]fn eq(&self, other: &StatusCode) -> bool
[src]
fn eq(&self, other: &StatusCode) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &StatusCode) -> bool
[src]
fn ne(&self, other: &StatusCode) -> bool
[src]This method tests for !=
.
impl PartialEq<u16> for StatusCode
[src]
impl PartialEq<u16> for StatusCode
[src]impl PartialOrd<StatusCode> for StatusCode
[src]
impl PartialOrd<StatusCode> for StatusCode
[src]fn partial_cmp(&self, other: &StatusCode) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &StatusCode) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl PartialOrd<u16> for StatusCode
[src]
impl PartialOrd<u16> for StatusCode
[src]fn partial_cmp(&self, other: &u16) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &u16) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for StatusCode
[src]
impl Eq for StatusCode
[src]
impl StructuralEq for StatusCode
[src]
impl StructuralPartialEq for StatusCode
[src]
Auto Trait Implementations
impl RefUnwindSafe for StatusCode
impl Send for StatusCode
impl Sync for StatusCode
impl Unpin for StatusCode
impl UnwindSafe for StatusCode
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more