conversions_rs 1.2.1

A comprehensive unit conversion library, CLI tool, and WebAssembly module with full SI (International System of Units) support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
//! Volume conversion functions organized by unit type
//! All conversions use liters as the base unit for accuracy and consistency

/// Liters conversion functions
pub mod liters {
    /// Converts liters to US gallons.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        value / 3.78541
    }

    /// Converts liters to UK gallons.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        value / 4.54609
    }

    /// Converts liters to milliliters.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_milliliters(value: f64) -> f64 {
        value * 1000.0
    }

    /// Converts liters to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        value * 33.814
    }

    /// Converts liters to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        value * 35.1951
    }

    /// Converts liters to US cups.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_cups_us(value: f64) -> f64 {
        value * 4.22675
    }

    /// Converts liters to US pints.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_pints_us(value: f64) -> f64 {
        value * 2.11338
    }

    /// Converts liters to US quarts.
    /// # Arguments
    /// * `value` - The volume in liters to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        value * 1.05669
    }
}

/// US gallons conversion functions
pub mod gallons_us {
    /// Converts US gallons to liters.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_liters(value: f64) -> f64 {
        value * 3.78541
    }

    /// Converts US gallons to UK gallons.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        super::liters::to_gallons_uk(to_liters(value))
    }

    /// Converts US gallons to milliliters.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_milliliters(value: f64) -> f64 {
        super::liters::to_milliliters(to_liters(value))
    }

    /// Converts US gallons to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        value * 128.0
    }

    /// Converts US gallons to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        super::liters::to_fluid_ounces_uk(to_liters(value))
    }

    /// Converts US gallons to US cups.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_cups_us(value: f64) -> f64 {
        value * 16.0
    }

    /// Converts US gallons to US pints.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_pints_us(value: f64) -> f64 {
        value * 8.0
    }

    /// Converts US gallons to US quarts.
    /// # Arguments
    /// * `value` - The volume in US gallons to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        value * 4.0
    }
}

/// UK gallons conversion functions
pub mod gallons_uk {
    /// Converts UK gallons to liters.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_liters(value: f64) -> f64 {
        value * 4.54609
    }

    /// Converts UK gallons to US gallons.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        super::liters::to_gallons_us(to_liters(value))
    }

    /// Converts UK gallons to milliliters.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_milliliters(value: f64) -> f64 {
        super::liters::to_milliliters(to_liters(value))
    }

    /// Converts UK gallons to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        super::liters::to_fluid_ounces_us(to_liters(value))
    }

    /// Converts UK gallons to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        value * 160.0
    }

    /// Converts UK gallons to US cups.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_cups_us(value: f64) -> f64 {
        super::liters::to_cups_us(to_liters(value))
    }

    /// Converts UK gallons to US pints.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_pints_us(value: f64) -> f64 {
        super::liters::to_pints_us(to_liters(value))
    }

    /// Converts UK gallons to US quarts.
    /// # Arguments
    /// * `value` - The volume in UK gallons to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        super::liters::to_quarts_us(to_liters(value))
    }
}

/// Milliliters conversion functions
pub mod milliliters {
    /// Converts milliliters to liters.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_liters(value: f64) -> f64 {
        value / 1000.0
    }

    /// Converts milliliters to US gallons.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        super::liters::to_gallons_us(to_liters(value))
    }

    /// Converts milliliters to UK gallons.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        super::liters::to_gallons_uk(to_liters(value))
    }

    /// Converts milliliters to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        value / 29.5735
    }

    /// Converts milliliters to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        value / 28.4131
    }

    /// Converts milliliters to US cups.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_cups_us(value: f64) -> f64 {
        value / 236.588
    }

    /// Converts milliliters to US pints.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_pints_us(value: f64) -> f64 {
        value / 473.176
    }

    /// Converts milliliters to US quarts.
    /// # Arguments
    /// * `value` - The volume in milliliters to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        value / 946.353
    }
}

/// US fluid ounces conversion functions
pub mod fluid_ounces_us {
    /// Converts US fluid ounces to liters.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_liters(value: f64) -> f64 {
        value / 33.814
    }

    /// Converts US fluid ounces to US gallons.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        value / 128.0
    }

    /// Converts US fluid ounces to UK gallons.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        super::liters::to_gallons_uk(to_liters(value))
    }

    /// Converts US fluid ounces to milliliters.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_milliliters(value: f64) -> f64 {
        value * 29.5735
    }

    /// Converts US fluid ounces to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        super::liters::to_fluid_ounces_uk(to_liters(value))
    }

    /// Converts US fluid ounces to US cups.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_cups_us(value: f64) -> f64 {
        value / 8.0
    }

    /// Converts US fluid ounces to US pints.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_pints_us(value: f64) -> f64 {
        value / 16.0
    }

    /// Converts US fluid ounces to US quarts.
    /// # Arguments
    /// * `value` - The volume in US fluid ounces to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        value / 32.0
    }
}

/// UK fluid ounces conversion functions
pub mod fluid_ounces_uk {
    /// Converts UK fluid ounces to liters.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_liters(value: f64) -> f64 {
        value / 35.1951
    }

    /// Converts UK fluid ounces to US gallons.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        super::liters::to_gallons_us(to_liters(value))
    }

    /// Converts UK fluid ounces to UK gallons.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        value / 160.0
    }

    /// Converts UK fluid ounces to milliliters.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_milliliters(value: f64) -> f64 {
        value * 28.4131
    }

    /// Converts UK fluid ounces to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        super::liters::to_fluid_ounces_us(to_liters(value))
    }

    /// Converts UK fluid ounces to US cups.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_cups_us(value: f64) -> f64 {
        super::liters::to_cups_us(to_liters(value))
    }

    /// Converts UK fluid ounces to US pints.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_pints_us(value: f64) -> f64 {
        super::liters::to_pints_us(to_liters(value))
    }

    /// Converts UK fluid ounces to US quarts.
    /// # Arguments
    /// * `value` - The volume in UK fluid ounces to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        super::liters::to_quarts_us(to_liters(value))
    }
}

/// US cups conversion functions
pub mod cups_us {
    /// Converts US cups to liters.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_liters(value: f64) -> f64 {
        value / 4.22675
    }

    /// Converts US cups to US gallons.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        value / 16.0
    }

    /// Converts US cups to UK gallons.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        super::liters::to_gallons_uk(to_liters(value))
    }

    /// Converts US cups to milliliters.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_milliliters(value: f64) -> f64 {
        value * 236.588
    }

    /// Converts US cups to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        value * 8.0
    }

    /// Converts US cups to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        super::liters::to_fluid_ounces_uk(to_liters(value))
    }

    /// Converts US cups to US pints.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_pints_us(value: f64) -> f64 {
        value / 2.0
    }

    /// Converts US cups to US quarts.
    /// # Arguments
    /// * `value` - The volume in US cups to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        value / 4.0
    }
}

/// US pints conversion functions
pub mod pints_us {
    /// Converts US pints to liters.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_liters(value: f64) -> f64 {
        value / 2.11338
    }

    /// Converts US pints to US gallons.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        value / 8.0
    }

    /// Converts US pints to UK gallons.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        super::liters::to_gallons_uk(to_liters(value))
    }

    /// Converts US pints to milliliters.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_milliliters(value: f64) -> f64 {
        value * 473.176
    }

    /// Converts US pints to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        value * 16.0
    }

    /// Converts US pints to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        super::liters::to_fluid_ounces_uk(to_liters(value))
    }

    /// Converts US pints to US cups.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_cups_us(value: f64) -> f64 {
        value * 2.0
    }

    /// Converts US pints to US quarts.
    /// # Arguments
    /// * `value` - The volume in US pints to convert
    pub fn to_quarts_us(value: f64) -> f64 {
        value / 2.0
    }
}

/// US quarts conversion functions
pub mod quarts_us {
    /// Converts US quarts to liters.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_liters(value: f64) -> f64 {
        value / 1.05669
    }

    /// Converts US quarts to US gallons.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_gallons_us(value: f64) -> f64 {
        value / 4.0
    }

    /// Converts US quarts to UK gallons.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_gallons_uk(value: f64) -> f64 {
        super::liters::to_gallons_uk(to_liters(value))
    }

    /// Converts US quarts to milliliters.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_milliliters(value: f64) -> f64 {
        value * 946.353
    }

    /// Converts US quarts to US fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_fluid_ounces_us(value: f64) -> f64 {
        value * 32.0
    }

    /// Converts US quarts to UK fluid ounces.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_fluid_ounces_uk(value: f64) -> f64 {
        super::liters::to_fluid_ounces_uk(to_liters(value))
    }

    /// Converts US quarts to US cups.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_cups_us(value: f64) -> f64 {
        value * 4.0
    }

    /// Converts US quarts to US pints.
    /// # Arguments
    /// * `value` - The volume in US quarts to convert
    pub fn to_pints_us(value: f64) -> f64 {
        value * 2.0
    }
}

// Legacy function wrappers for backward compatibility
pub fn liters_to_gallons_us(liters: f64) -> f64 {
    liters::to_gallons_us(liters)
}

pub fn gallons_us_to_liters(gallons: f64) -> f64 {
    gallons_us::to_liters(gallons)
}

pub fn liters_to_gallons_uk(liters: f64) -> f64 {
    liters::to_gallons_uk(liters)
}

pub fn gallons_uk_to_liters(gallons: f64) -> f64 {
    gallons_uk::to_liters(gallons)
}

pub fn liters_to_milliliters(liters: f64) -> f64 {
    liters::to_milliliters(liters)
}

pub fn milliliters_to_liters(ml: f64) -> f64 {
    milliliters::to_liters(ml)
}

pub fn liters_to_fluid_ounces_us(liters: f64) -> f64 {
    liters::to_fluid_ounces_us(liters)
}

pub fn fluid_ounces_us_to_liters(fl_oz: f64) -> f64 {
    fluid_ounces_us::to_liters(fl_oz)
}

pub fn liters_to_fluid_ounces_uk(liters: f64) -> f64 {
    liters::to_fluid_ounces_uk(liters)
}

pub fn fluid_ounces_uk_to_liters(fl_oz: f64) -> f64 {
    fluid_ounces_uk::to_liters(fl_oz)
}

pub fn liters_to_cups_us(liters: f64) -> f64 {
    liters::to_cups_us(liters)
}

pub fn cups_us_to_liters(cups: f64) -> f64 {
    cups_us::to_liters(cups)
}

pub fn liters_to_pints_us(liters: f64) -> f64 {
    liters::to_pints_us(liters)
}

pub fn pints_us_to_liters(pints: f64) -> f64 {
    pints_us::to_liters(pints)
}

pub fn liters_to_quarts_us(liters: f64) -> f64 {
    liters::to_quarts_us(liters)
}

pub fn quarts_us_to_liters(quarts: f64) -> f64 {
    quarts_us::to_liters(quarts)
}

/// Convert between any two volume units
pub fn convert_volume(value: f64, from: &str, to: &str) -> Result<f64, String> {
    // First convert to liters (base unit)
    let liters = match from.to_lowercase().as_str() {
        "l" | "liter" | "liters" | "litre" | "litres" => value,
        "ml" | "milliliter" | "milliliters" | "millilitre" | "millilitres" => {
            milliliters_to_liters(value)
        }
        "gal" | "gallon" | "gallons" | "gal_us" => gallons_us_to_liters(value),
        "gal_uk" | "gallon_uk" | "gallons_uk" => gallons_uk_to_liters(value),
        "fl_oz" | "fl_oz_us" | "fluid_ounce" | "fluid_ounces" => fluid_ounces_us_to_liters(value),
        "fl_oz_uk" | "fluid_ounce_uk" | "fluid_ounces_uk" => fluid_ounces_uk_to_liters(value),
        "cup" | "cups" | "cup_us" => cups_us_to_liters(value),
        "pt" | "pint" | "pints" | "pt_us" => pints_us_to_liters(value),
        "qt" | "quart" | "quarts" | "qt_us" => quarts_us_to_liters(value),
        _ => return Err(format!("Unknown volume unit: {}", from)),
    };

    // Then convert from liters to target unit
    let result = match to.to_lowercase().as_str() {
        "l" | "liter" | "liters" | "litre" | "litres" => liters,
        "ml" | "milliliter" | "milliliters" | "millilitre" | "millilitres" => {
            liters_to_milliliters(liters)
        }
        "gal" | "gallon" | "gallons" | "gal_us" => liters_to_gallons_us(liters),
        "gal_uk" | "gallon_uk" | "gallons_uk" => liters_to_gallons_uk(liters),
        "fl_oz" | "fl_oz_us" | "fluid_ounce" | "fluid_ounces" => liters_to_fluid_ounces_us(liters),
        "fl_oz_uk" | "fluid_ounce_uk" | "fluid_ounces_uk" => liters_to_fluid_ounces_uk(liters),
        "cup" | "cups" | "cup_us" => liters_to_cups_us(liters),
        "pt" | "pint" | "pints" | "pt_us" => liters_to_pints_us(liters),
        "qt" | "quart" | "quarts" | "qt_us" => liters_to_quarts_us(liters),
        _ => return Err(format!("Unknown volume unit: {}", to)),
    };

    Ok(result)
}