pub struct UnixSocketsUnsupported;Expand description
A runtime that declares no Unix-domain support was asked for a connection to one.
Reachable only past TcpConnect::SUPPORTS_UNIX, which
hclient_native::Native::unix_socket checks at the call that
configures it — so a caller normally meets the refusal where they
wrote the path, not on the wire.
Trait Implementations§
Source§impl Clone for UnixSocketsUnsupported
impl Clone for UnixSocketsUnsupported
Source§fn clone(&self) -> UnixSocketsUnsupported
fn clone(&self) -> UnixSocketsUnsupported
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UnixSocketsUnsupported
Source§impl Debug for UnixSocketsUnsupported
impl Debug for UnixSocketsUnsupported
Source§impl Display for UnixSocketsUnsupported
impl Display for UnixSocketsUnsupported
impl Eq for UnixSocketsUnsupported
Source§impl Error for UnixSocketsUnsupported
impl Error for UnixSocketsUnsupported
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for UnixSocketsUnsupported
impl PartialEq for UnixSocketsUnsupported
impl StructuralPartialEq for UnixSocketsUnsupported
Auto Trait Implementations§
impl Freeze for UnixSocketsUnsupported
impl RefUnwindSafe for UnixSocketsUnsupported
impl Send for UnixSocketsUnsupported
impl Sync for UnixSocketsUnsupported
impl Unpin for UnixSocketsUnsupported
impl UnsafeUnpin for UnixSocketsUnsupported
impl UnwindSafe for UnixSocketsUnsupported
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