Struct shareable::SharedUsize [] [src]

pub struct SharedUsize { /* fields omitted */ }

Shareable usize data element.

Examples

use std::sync::mpsc;
use std::thread;
use shareable::SharedUsize;

// Multiple threads, atomic values are used.
let value1 = SharedUsize::new(63);
let value2 = value1.clone();

let (tx, rx) = mpsc::channel();

let thread = thread::spawn(move || {
    rx.recv();
    assert_eq!(value2.get(), 31);
});

value1.set(31);

tx.send(());
thread.join().unwrap();

Methods

impl SharedUsize
[src]

Construct a new instance of the object.

Set the value of the object.

Returns the value of the object.

Trait Implementations

impl Clone for SharedUsize
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SharedUsize
[src]

Implementation of Debug.

impl Display for SharedUsize
[src]

Implementation of Display.