rust/src/libsync
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
..
comm Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
atomic.rs Register new snapshots 2014-10-10 22:09:49 -07:00
deque.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
lib.rs Update code with new lint names 2014-10-28 08:54:21 -07:00
lock.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
mpmc_bounded_queue.rs Create UnsignedInt trait and deprecate free functions 2014-11-13 02:02:44 +11:00
mpsc_intrusive.rs stabilize atomics (now atomic) 2014-08-04 16:03:21 -07:00
mpsc_queue.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
mutex.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
one.rs Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
raw.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
spsc_queue.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00