LengthUnit

Trait LengthUnit 

Source
pub trait LengthUnit: Unit<Dim = Length> { }
Expand description

Marker trait for any Unit whose dimension is Length.

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.

Implementors§

Source§

impl<T> LengthUnit for T
where T: Unit<Dim = Length>,