pub trait Unit {
    const LABEL: &'static str;
    const M_FACTOR: f64;
    fn factor<T: Unit>() -> f64 { ... }
}
Expand description

Unit definition for Length

Associated Constants

Unit label

Multiplication factor to convert to meters

Provided methods

Multiplication factor to convert to another unit

Implementors