#[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§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Client
: 0 bytesServer
: 0 bytes