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
booltype. - Radium
I8 - Best-effort atomic
i8type. - Radium
I16 - Best-effort atomic
i16type. - Radium
I32 - Best-effort atomic
i32type. - Radium
I64 - Best-effort atomic
i64type. - Radium
Isize - Best-effort atomic
isizetype. - Radium
Ptr - Best-effort atomic pointer type.
- Radium
U8 - Best-effort atomic
u8type. - Radium
U16 - Best-effort atomic
u16type. - Radium
U32 - Best-effort atomic
u32type. - Radium
U64 - Best-effort atomic
u64type. - Radium
Usize - Best-effort atomic
usizetype.