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ยง
- Radium
Bool - Best-effort atomic
bool
type. - Radium
I8 - Best-effort atomic
i8
type. - Radium
I16 - Best-effort atomic
i16
type. - Radium
I32 - Best-effort atomic
i32
type. - Radium
I64 - Best-effort atomic
i64
type. - Radium
Isize - Best-effort atomic
isize
type. - Radium
Ptr - Best-effort atomic pointer type.
- Radium
U8 - Best-effort atomic
u8
type. - Radium
U16 - Best-effort atomic
u16
type. - Radium
U32 - Best-effort atomic
u32
type. - Radium
U64 - Best-effort atomic
u64
type. - Radium
Usize - Best-effort atomic
usize
type.