pub trait AsRangedCoord {
    type CoordDescType: Ranged + From<Self>
    where
        <Self::CoordDescType as Ranged>::ValueType == Self::Value
; type Value; }
Expand description

The trait for the type that can be converted into a ranged coordinate axis

Required Associated Types

Implementations on Foreign Types

Implementors