pub enum ResponsesTypes {
Informational(ResponsesInformationalCodes),
Success(ResponsesSuccessCodes),
Redirection(ResponsesRedirectionCodes),
ClientError(ResponsesClientCodes),
ServerError(ResponsesServerCodes),
ServiceError(ResponsesServiceCodes),
CrawlerError(ResponsesCrawlerCodes),
LocalApiError(ResponsesLocalApiCodes),
}Expand description
Enum representing all HTTP response families.
Variants§
Informational(ResponsesInformationalCodes)
Success(ResponsesSuccessCodes)
Redirection(ResponsesRedirectionCodes)
ClientError(ResponsesClientCodes)
ServerError(ResponsesServerCodes)
ServiceError(ResponsesServiceCodes)
CrawlerError(ResponsesCrawlerCodes)
LocalApiError(ResponsesLocalApiCodes)
Implementations§
Trait Implementations§
Source§impl Clone for ResponsesTypes
impl Clone for ResponsesTypes
Source§fn clone(&self) -> ResponsesTypes
fn clone(&self) -> ResponsesTypes
Returns a copy 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 ResponsesTypes
impl Debug for ResponsesTypes
Source§impl ToU16 for ResponsesTypes
impl ToU16 for ResponsesTypes
Implementation to convert a ResponsesTypes to u16.
impl Copy for ResponsesTypes
Auto Trait Implementations§
impl Freeze for ResponsesTypes
impl RefUnwindSafe for ResponsesTypes
impl Send for ResponsesTypes
impl Sync for ResponsesTypes
impl Unpin for ResponsesTypes
impl UnwindSafe for ResponsesTypes
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