pub trait AtomicFloatRepresentable: Sized {
    type AtomicType: AtomicValue<Inner = Self> + From<Self>;
}

Required Associated Types§

source

type AtomicType: AtomicValue<Inner = Self> + From<Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl AtomicFloatRepresentable for f32

source§

impl AtomicFloatRepresentable for f64

Implementors§