rust/src/libnative
Steven Fackler 3dcd215740 Switch to purely namespaced enums
This breaks code that referred to variant names in the same namespace as
their enum. Reexport the variants in the old location or alter code to
refer to the new locations:

```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
=>
```
pub use self::Foo::{A, B};

pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
or
```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = Foo::A;
}
```

[breaking-change]
2014-11-17 07:35:51 -08:00
..
io Runtime removal: fully remove rtio 2014-11-08 20:40:39 -08:00
lib.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
task.rs Runtime removal: fully remove rtio 2014-11-08 20:40:39 -08:00