tailwind_css_fixes/systems/units/negative/traits/
mod.rs1use super::*;
2
3impl From<bool> for Negative {
4 fn from(n: bool) -> Self {
5 Self(n)
6 }
7}
8
9impl PartialEq<bool> for Negative {
10 fn eq(&self, other: &bool) -> bool {
11 self.0 == *other
12 }
13}