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
use crate::converters::*;
use crate::{ColorAlpha, ColorTuple, ColorTupleA, Hsl, Rgb};

impl std::convert::From<&ColorTuple> for Rgb {
  fn from(t: &ColorTuple) -> Rgb {
    let (h, s, l) = *t;
    Rgb::new(h, s, l, None)
  }
}

impl std::convert::From<ColorTuple> for Rgb {
  fn from(t: ColorTuple) -> Rgb {
    Rgb::from(&t)
  }
}

impl From<&ColorTupleA> for Rgb {
  fn from(t: &ColorTupleA) -> Rgb {
    let (h, s, l, a) = *t;
    Rgb::new(h, s, l, Some(a))
  }
}

impl From<ColorTupleA> for Rgb {
  fn from(t: ColorTupleA) -> Rgb {
    Rgb::from(&t)
  }
}

fn from_hsl(hsl: &Hsl) -> Rgb {
  let a = hsl.get_alpha();
  let tuple: ColorTuple = hsl.into();
  let mut rgb = Rgb::from(hsl_to_rgb(&tuple));
  rgb.set_alpha(a);
  rgb
}

impl From<&Hsl> for Rgb {
  fn from(hsl: &Hsl) -> Self {
    from_hsl(hsl)
  }
}
impl From<&mut Hsl> for Rgb {
  fn from(hsl: &mut Hsl) -> Self {
    from_hsl(hsl)
  }
}
impl From<Hsl> for Rgb {
  fn from(hsl: Hsl) -> Self {
    from_hsl(&hsl)
  }
}

//
//
//
// INTO
//

impl<'a> Into<ColorTuple> for &'a Rgb {
  fn into(self) -> ColorTuple {
    let Rgb { r, g, b, .. } = *self;
    (r, g, b)
  }
}
impl<'a> Into<ColorTuple> for &'a mut Rgb {
  fn into(self) -> ColorTuple {
    let Rgb { r, g, b, .. } = *self;
    (r, g, b)
  }
}
impl Into<ColorTuple> for Rgb {
  fn into(self) -> ColorTuple {
    self.as_ref().into()
  }
}

impl<'a> Into<ColorTupleA> for &'a Rgb {
  fn into(self) -> ColorTupleA {
    let Rgb { r, g, b, .. } = *self;
    (r, g, b, self.get_alpha())
  }
}
impl<'a> Into<ColorTupleA> for &'a mut Rgb {
  fn into(self) -> ColorTupleA {
    let Rgb { r, g, b, .. } = *self;
    (r, g, b, self.get_alpha())
  }
}

impl Into<ColorTupleA> for Rgb {
  fn into(self) -> ColorTupleA {
    self.as_ref().into()
  }
}