* this only works on nightly *
A mutex like construct for single threaded applications.
Default
```rust use no_mutex::Mutex;
static FOO: Mutex
struct Foo { i:u32 }
impl Default for Foo { fn default() -> Self { Foo { i: 42 } } }
fn main() { let r = FOO.lock(); println!("{:?}",r); } ```