AsRangedCoord

Trait AsRangedCoord 

Source
pub trait AsRangedCoord: Sized {
    type CoordDescType: Ranged + From<Self>;
    type Value;
}
Expand description

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

Required Associated Types§

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 AsRangedCoord for Range<f32>

Source§

impl AsRangedCoord for Range<f64>

Source§

impl AsRangedCoord for Range<i32>

Source§

impl AsRangedCoord for Range<i64>

Source§

impl AsRangedCoord for Range<u32>

Source§

impl AsRangedCoord for Range<u64>

Source§

impl<Z: TimeZone> AsRangedCoord for Range<Date<Z>>

Implementors§