about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-02 22:10:38 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-06 22:19:41 -0700
commitb830b4b86b39173843a2d660727b9e1854fe8bfb (patch)
treed16447e25314fc8f6a8d947beecafc7746c59923 /src/libstd
parente87e18064ece0d7eddb269b8211fb8fdf5efaa91 (diff)
downloadrust-b830b4b86b39173843a2d660727b9e1854fe8bfb.tar.gz
rust-b830b4b86b39173843a2d660727b9e1854fe8bfb.zip
rtio: Remove unused stuct
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rt/rtio.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libstd/rt/rtio.rs b/src/libstd/rt/rtio.rs
index 06db465f7ee..24ff2a8f425 100644
--- a/src/libstd/rt/rtio.rs
+++ b/src/libstd/rt/rtio.rs
@@ -61,18 +61,6 @@ pub trait RemoteCallback {
     fn fire(&mut self);
 }
 
-/// Data needed to make a successful open(2) call
-/// Using unix flag conventions for now, which happens to also be what's supported
-/// libuv (it does translation to windows under the hood).
-pub struct FileOpenConfig {
-    /// Path to file to be opened
-    pub path: Path,
-    /// Flags for file access mode (as per open(2))
-    pub flags: int,
-    /// File creation mode, ignored unless O_CREAT is passed as part of flags
-    pub mode: int
-}
-
 /// Description of what to do when a file handle is closed
 pub enum CloseBehavior {
     /// Do not close this handle when the object is destroyed