Skip to content

Commit b830b4b

Browse files
committed
rtio: Remove unused stuct
1 parent e87e180 commit b830b4b

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/libstd/rt/rtio.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,6 @@ pub trait RemoteCallback {
6161
fn fire(&mut self);
6262
}
6363

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-
7664
/// Description of what to do when a file handle is closed
7765
pub enum CloseBehavior {
7866
/// Do not close this handle when the object is destroyed

0 commit comments

Comments
 (0)