Type Alias AtomicI16

Source
pub type AtomicI16 = Cell<i16>;
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 i16.

Aliased Type§

pub struct AtomicI16 { /* private fields */ }