Crates.io | length |
lib.rs | length |
version | 0.2.3 |
source | src |
created_at | 2019-10-04 13:18:12.704782 |
updated_at | 2024-11-05 21:20:18.429158 |
description | A library to handle length/distances easyly. It can parse a string with several units (m, km, mi, ft, ...) into the Length-struct and converting into other units. |
homepage | https://github.com/ringostarr80/rust-length |
repository | https://github.com/ringostarr80/rust-length |
max_upload_size | |
id | 169863 |
size | 71,984 |
This rust library is intended to do some processing of length values.
It can parse strings with different units (m, km, mi, ft, ...) and converting them into other units.
To use length
, first add this to your Cargo.toml
:
[dependencies]
length = "0.2"
Next, add this to your crate:
extern crate length;
use length::{Length, Unit, MetricUnit::*};
fn main() {
let five_meter = Length::new_string("5m").unwrap();
assert_eq!("5m", five_meter.to_original_string());
assert_eq!(5.0, five_meter.value);
assert_eq!(Unit::Metric(Meter), five_meter.unit);
let fivehundred_centimeter = five_meter.to(Unit::Metric(Centimeter));
assert_eq!(500.0, fivehundred_centimer.value);
assert_eq!(Unit::Metric(Centimeter), fivehundred_centimer.unit);
// ...
}
For the latest documentation and examples, please go to https://docs.rs/length.
If you have suggestions or found an error, feel free to open an issue or create a pull request on github.