wio 0.2.0

Windows IO wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright © 2016, Peter Atashian
// Licensed under the MIT License <LICENSE.md>
use handle::{Handle};

pub struct NamedPipe(Handle);
impl NamedPipe {
    //fn create(name: &[u16], access: Access, )
}
pub enum Access {
    Inbound,
    Outbound,
    Duplex,
}