pub trait IntoIpcPath: Send {
// Required method
fn into_ipc_path(self) -> Result<PathBuf>;
}Expand description
Path used for an IPC client or server.
Required Methods§
Sourcefn into_ipc_path(self) -> Result<PathBuf>
fn into_ipc_path(self) -> Result<PathBuf>
Converts the object into an IPC path.