Module types

Source
Expand description

Best-effort atomic types

This module exports RadiumType aliases that map to the AtomicType on targets that have it, or Cell<type> on targets that do not. This alias can be used as a consistent name for crates that need portable names for non-portable types.

Type Aliasesยง

RadiumBool
Best-effort atomic bool type.
RadiumI8
Best-effort atomic i8 type.
RadiumI16
Best-effort atomic i16 type.
RadiumI32
Best-effort atomic i32 type.
RadiumI64
Best-effort atomic i64 type.
RadiumIsize
Best-effort atomic isize type.
RadiumPtr
Best-effort atomic pointer type.
RadiumU8
Best-effort atomic u8 type.
RadiumU16
Best-effort atomic u16 type.
RadiumU32
Best-effort atomic u32 type.
RadiumU64
Best-effort atomic u64 type.
RadiumUsize
Best-effort atomic usize type.