We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e87e180 commit b830b4bCopy full SHA for b830b4b
src/libstd/rt/rtio.rs
@@ -61,18 +61,6 @@ pub trait RemoteCallback {
61
fn fire(&mut self);
62
}
63
64
-/// Data needed to make a successful open(2) call
65
-/// Using unix flag conventions for now, which happens to also be what's supported
66
-/// libuv (it does translation to windows under the hood).
67
-pub struct FileOpenConfig {
68
- /// Path to file to be opened
69
- pub path: Path,
70
- /// Flags for file access mode (as per open(2))
71
- pub flags: int,
72
- /// File creation mode, ignored unless O_CREAT is passed as part of flags
73
- pub mode: int
74
-}
75
-
76
/// Description of what to do when a file handle is closed
77
pub enum CloseBehavior {
78
/// Do not close this handle when the object is destroyed
0 commit comments