Struct windows_sys::Networking::Sockets::SocketErrorStatus
[−]#[repr(transparent)]pub struct SocketErrorStatus(pub i32);
Expand description
Required features: "Networking_Sockets"
Tuple Fields
0: i32
Implementations
impl SocketErrorStatus
impl SocketErrorStatus
pub const Unknown: Self = Self(0i32)
pub const OperationAborted: Self = Self(1i32)
pub const HttpInvalidServerResponse: Self = Self(2i32)
pub const ConnectionTimedOut: Self = Self(3i32)
pub const AddressFamilyNotSupported: Self = Self(4i32)
pub const SocketTypeNotSupported: Self = Self(5i32)
pub const HostNotFound: Self = Self(6i32)
pub const NoDataRecordOfRequestedType: Self = Self(7i32)
pub const NonAuthoritativeHostNotFound: Self = Self(8i32)
pub const ClassTypeNotFound: Self = Self(9i32)
pub const AddressAlreadyInUse: Self = Self(10i32)
pub const CannotAssignRequestedAddress: Self = Self(11i32)
pub const ConnectionRefused: Self = Self(12i32)
pub const NetworkIsUnreachable: Self = Self(13i32)
pub const UnreachableHost: Self = Self(14i32)
pub const NetworkIsDown: Self = Self(15i32)
pub const NetworkDroppedConnectionOnReset: Self = Self(16i32)
pub const SoftwareCausedConnectionAbort: Self = Self(17i32)
pub const ConnectionResetByPeer: Self = Self(18i32)
pub const HostIsDown: Self = Self(19i32)
pub const NoAddressesFound: Self = Self(20i32)
pub const TooManyOpenFiles: Self = Self(21i32)
pub const MessageTooLong: Self = Self(22i32)
pub const CertificateExpired: Self = Self(23i32)
pub const CertificateUntrustedRoot: Self = Self(24i32)
pub const CertificateCommonNameIsIncorrect: Self = Self(25i32)
pub const CertificateWrongUsage: Self = Self(26i32)
pub const CertificateRevoked: Self = Self(27i32)
pub const CertificateNoRevocationCheck: Self = Self(28i32)
pub const CertificateRevocationServerOffline: Self = Self(29i32)
pub const CertificateIsInvalid: Self = Self(30i32)
Trait Implementations
impl Clone for SocketErrorStatus
impl Clone for SocketErrorStatus
impl Copy for SocketErrorStatus
Auto Trait Implementations
impl RefUnwindSafe for SocketErrorStatus
impl Send for SocketErrorStatus
impl Sync for SocketErrorStatus
impl Unpin for SocketErrorStatus
impl UnwindSafe for SocketErrorStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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