IntoIpcPath

Trait IntoIpcPath 

Source
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§

Source

fn into_ipc_path(self) -> Result<PathBuf>

Converts the object into an IPC path.

Implementations on Foreign Types§

Source§

impl IntoIpcPath for PathBuf

Implementors§

Source§

impl<T> IntoIpcPath for ServerId<T>
where T: Into<String> + Send,