#[non_exhaustive]pub enum PipeEnd {
Client,
Server,
}
Available on Windows and crate feature
net
only.Expand description
Indicates the end of a named pipe.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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§
source§impl PartialEq<PipeEnd> for PipeEnd
impl PartialEq<PipeEnd> for PipeEnd
impl Copy for PipeEnd
impl Eq for PipeEnd
impl StructuralEq for PipeEnd
impl StructuralPartialEq for PipeEnd
Auto Trait Implementations§
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