Struct shareable::SharedU8 [] [src]

pub struct SharedU8 { /* fields omitted */ }

Shareable u8 data element.

Examples

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

// Multiple threads, atomic values are used.
let value1 = SharedU8::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 SharedU8
[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 SharedU8
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SharedU8
[src]

Implementation of Debug.

impl Display for SharedU8
[src]

Implementation of Display.