pub trait FixedScalarKind {
    const NUM_WINDOWS: usize;
}
Expand description

A trait representing the kind of scalar used with a particular FixedPoint.

This trait exists because of limitations around const generics.

Required Associated Constants

The number of windows that this scalar kind requires.

Implementors