File: index.rs

package info (click to toggle)
rust-interprocess 2.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,016 kB
  • sloc: makefile: 2
file content (25 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#[path = "util/mod.rs"]
#[macro_use]
mod util;

mod os {
    #[cfg(unix)]
    mod unix {
        mod local_socket_fake_ns;
        mod local_socket_mode;
    }
    #[cfg(windows)]
    mod windows {
        mod local_socket_security_descriptor;
        mod named_pipe;
        mod tokio_named_pipe;
    }
}

mod local_socket;
#[cfg(feature = "tokio")]
mod tokio_local_socket;

#[cfg(feature = "tokio")]
mod tokio_unnamed_pipe;
mod unnamed_pipe;