Trait StrictProduct

Source
pub trait StrictProduct: StrictType + StrictDumb { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<A: StrictType + Default, B: StrictType + Default> StrictProduct for (A, B)

Source§

impl<A: StrictType + Default, B: StrictType + Default, C: StrictType + Default> StrictProduct for (A, B, C)

Source§

impl<T> StrictProduct for Box<T>

Implementors§