#[repr(u16)]pub enum ResponsesServiceCodes {
Show 16 variants
ReadingError = 611,
ConnectionError = 612,
ReadingTimeExpired = 613,
SSLHandshakeFailed = 614,
AnotherReadingError = 615,
FBAAnomaly = 616,
CodingError = 617,
RedirectWithoutRedirectURL = 618,
DNSLookupFailed = 680,
SyntacticallyIncorrectURL = 690,
LostConnection = 691,
WriteTimeout = 692,
SelectionFailed = 693,
WriteError = 694,
IncompleteBlockHeader = 695,
UnexpectedError = 699,
}Variants§
ReadingError = 611
ConnectionError = 612
ReadingTimeExpired = 613
SSLHandshakeFailed = 614
AnotherReadingError = 615
FBAAnomaly = 616
CodingError = 617
RedirectWithoutRedirectURL = 618
DNSLookupFailed = 680
SyntacticallyIncorrectURL = 690
LostConnection = 691
WriteTimeout = 692
SelectionFailed = 693
WriteError = 694
IncompleteBlockHeader = 695
UnexpectedError = 699
Trait Implementations§
Source§impl Clone for ResponsesServiceCodes
impl Clone for ResponsesServiceCodes
Source§fn clone(&self) -> ResponsesServiceCodes
fn clone(&self) -> ResponsesServiceCodes
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 ResponsesServiceCodes
impl Debug for ResponsesServiceCodes
Source§impl EnumProperty for ResponsesServiceCodes
impl EnumProperty for ResponsesServiceCodes
Source§impl From<ResponsesServiceCodes> for u16
impl From<ResponsesServiceCodes> for u16
Source§fn from(enum_value: ResponsesServiceCodes) -> Self
fn from(enum_value: ResponsesServiceCodes) -> Self
Converts to this type from the input type.
Source§impl TryFrom<u16> for ResponsesServiceCodes
impl TryFrom<u16> for ResponsesServiceCodes
Source§type Error = TryFromPrimitiveError<ResponsesServiceCodes>
type Error = TryFromPrimitiveError<ResponsesServiceCodes>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ResponsesServiceCodes
impl TryFromPrimitive for ResponsesServiceCodes
const NAME: &'static str = "ResponsesServiceCodes"
type Primitive = u16
type Error = TryFromPrimitiveError<ResponsesServiceCodes>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for ResponsesServiceCodes
Auto Trait Implementations§
impl Freeze for ResponsesServiceCodes
impl RefUnwindSafe for ResponsesServiceCodes
impl Send for ResponsesServiceCodes
impl Sync for ResponsesServiceCodes
impl Unpin for ResponsesServiceCodes
impl UnwindSafe for ResponsesServiceCodes
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