pub struct PipeConnection { /* private fields */ }Available on crate feature
pipe only.Expand description
IPC connection implemented with Unix domain sockets and Windows named pipes.
Trait Implementations§
Source§impl Debug for PipeConnection
impl Debug for PipeConnection
Source§impl IpcConnection for PipeConnection
impl IpcConnection for PipeConnection
Source§async fn connect(name: &str) -> Result<Self, Error>
async fn connect(name: &str) -> Result<Self, Error>
Connects to an IPC listener at a specific endpoint. Read more
Source§fn peer_endpoint(&self) -> &str
fn peer_endpoint(&self) -> &str
Returns the peer endpoint of the IPC connection.
Auto Trait Implementations§
impl Freeze for PipeConnection
impl RefUnwindSafe for PipeConnection
impl Send for PipeConnection
impl Sync for PipeConnection
impl Unpin for PipeConnection
impl UnsafeUnpin for PipeConnection
impl UnwindSafe for PipeConnection
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