pub trait PyAtomicScalar: Sealed {
    type Radium: Radium<Item = Self>;
}

Required Associated Types§

source

type Radium: Radium<Item = Self>

Implementations on Foreign Types§

source§

impl PyAtomicScalar for usize

source§

impl PyAtomicScalar for u32

§

type Radium = Cell<u32>

source§

impl PyAtomicScalar for i16

§

type Radium = Cell<i16>

source§

impl PyAtomicScalar for u64

§

type Radium = Cell<u64>

source§

impl PyAtomicScalar for bool

source§

impl<T> PyAtomicScalar for *mut T

source§

impl PyAtomicScalar for i32

§

type Radium = Cell<i32>

source§

impl PyAtomicScalar for u16

§

type Radium = Cell<u16>

source§

impl PyAtomicScalar for isize

source§

impl PyAtomicScalar for i64

§

type Radium = Cell<i64>

source§

impl PyAtomicScalar for u8

§

type Radium = Cell<u8>

source§

impl PyAtomicScalar for i8

§

type Radium = Cell<i8>

Implementors§