Skip to main content

ReduceDType

Trait ReduceDType 

Source
pub trait ReduceDType {
    type In: Numeric;
    type SizeIn: Size;
    type Out: Numeric;
    type SizeOut: Size;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<In: Numeric, SizeIn: Size, Out: Numeric, SizeOut: Size> ReduceDType for ((In, SizeIn), (Out, SizeOut))

Source§

type In = In

Source§

type SizeIn = SizeIn

Source§

type Out = Out

Source§

type SizeOut = SizeOut

Implementors§