pub enum PipeEnd {
Client,
Server,
}
Available on Windows only.
Expand description
Indicates the end of a named pipe.
Variants§
Client
The named pipe refers to the client end of a named pipe instance.
Corresponds to PIPE_CLIENT_END
.
Server
The named pipe refers to the server end of a named pipe instance.
Corresponds to PIPE_SERVER_END
.
Trait Implementations§
impl Copy for PipeEnd
impl Eq for PipeEnd
impl StructuralPartialEq for PipeEnd
Auto Trait Implementations§
impl Freeze for PipeEnd
impl RefUnwindSafe for PipeEnd
impl Send for PipeEnd
impl Sync for PipeEnd
impl Unpin for PipeEnd
impl UnwindSafe for PipeEnd
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