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§
impl UnixSocketProvider for &str
Available on Unix only.
impl UnixSocketProvider for &Path
Available on Unix only.
impl UnixSocketProvider for String
Available on Unix only.
impl UnixSocketProvider for Arc<Path>
Available on Unix only.
impl UnixSocketProvider for PathBuf
Available on Unix only.