UnixSocketProvider

Trait UnixSocketProvider 

Source
pub trait UnixSocketProvider { }
Available on non-WebAssembly and docsrs only.
Expand description

A provider for Unix Domain Socket paths.

This trait is sealed. This allows us expand the support in the future by controlling who can implement the trait.

It’s available in the docs to see what type may be passed in.

Implementations on Foreign Types§

Source§

impl UnixSocketProvider for &str

Available on Unix only.
Source§

impl UnixSocketProvider for &Path

Available on Unix only.
Source§

impl UnixSocketProvider for String

Available on Unix only.
Source§

impl UnixSocketProvider for Arc<Path>

Available on Unix only.
Source§

impl UnixSocketProvider for PathBuf

Available on Unix only.

Implementors§