pub struct PipeInfo {
pub mode: PipeMode,
pub end: PipeEnd,
pub max_instances: u32,
pub out_buffer_size: u32,
pub in_buffer_size: u32,
}
Available on Windows only.
Expand description
Information about a named pipe.
Constructed through NamedPipeServer::info
or NamedPipeClient::info
.
Fields§
§mode: PipeMode
Indicates the mode of a named pipe.
end: PipeEnd
Indicates the end of a named pipe.
max_instances: u32
The maximum number of instances that can be created for this pipe.
out_buffer_size: u32
The number of bytes to reserve for the output buffer.
in_buffer_size: u32
The number of bytes to reserve for the input buffer.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PipeInfo
impl RefUnwindSafe for PipeInfo
impl Send for PipeInfo
impl Sync for PipeInfo
impl Unpin for PipeInfo
impl UnwindSafe for PipeInfo
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