Type Alias AtomicU8

Source
pub type AtomicU8 = Cell<u8>;
Expand description

A integer type which can be safely shared between threads when “sync” feature is enabled.
A integer type with non-threadsafe interior mutability when “sync” feature is not enabled.

This type has the same in-memory representation as a i8.

Aliased Type§

pub struct AtomicU8 { /* private fields */ }