generated from ElnuDev/rust-project
Implement PartialEq for SVGMeasure
This commit is contained in:
parent
d4c7f52955
commit
3b9c6d58de
2 changed files with 21 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
use super::SVGUnit;
|
use super::SVGUnit;
|
||||||
|
use std::cmp::Ordering;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::{
|
use std::{
|
||||||
fmt::Display,
|
fmt::Display,
|
||||||
|
@ -40,6 +41,18 @@ impl PartialEq for SVGMeasure {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl PartialOrd for SVGMeasure {
|
||||||
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
||||||
|
Some(if self == other {
|
||||||
|
Ordering::Equal
|
||||||
|
} else if self.to_user_units() > other.to_user_units() {
|
||||||
|
Ordering::Greater
|
||||||
|
} else {
|
||||||
|
Ordering::Less
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl Display for SVGMeasure {
|
impl Display for SVGMeasure {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
write!(f, "{}{}", self.measure, self.unit)
|
write!(f, "{}{}", self.measure, self.unit)
|
||||||
|
|
|
@ -44,3 +44,11 @@ fn ne() {
|
||||||
let b = SVGMeasure::new(10.0, SVGUnit::Pixel);
|
let b = SVGMeasure::new(10.0, SVGUnit::Pixel);
|
||||||
assert_ne!(a, b);
|
assert_ne!(a, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn cmp() {
|
||||||
|
let m_10cm = SVGMeasure::new(10.0, SVGUnit::Centimeter);
|
||||||
|
let m_5mm = SVGMeasure::new(5.0, SVGUnit::Millimeter);
|
||||||
|
assert!(m_10cm > m_5mm);
|
||||||
|
assert!(m_5mm < m_10cm);
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue