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
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 {
  /// # Example
  /// ```
  /// use colorsys::{Rgb,Hsl,prelude::*};
  /// let hsl = Hsl::from(&(48.0, 70.0, 50.0));
  /// let rgb: Rgb = Rgb::from(&hsl);
  /// assert_eq!(rgb.to_css_string(), "rgb(217,181,38)");
  /// ```
  fn from(hsl: &Hsl) -> Self {
    from_hsl(hsl)
  }
}

impl From<&mut Hsl> for Rgb {
  /// # Example
  /// ```
  /// use colorsys::{Rgb,Hsl,prelude::*};
  /// let mut hsl = Hsl::from(&(359.0, 33.0, 77.0));
  /// let rgb_string = Rgb::from(&mut hsl).to_css_string();
  /// assert_eq!(rgb_string, "rgb(216,177,178)");
  /// ```
  fn from(hsl: &mut Hsl) -> Self {
    from_hsl(hsl)
  }
}
impl From<Hsl> for Rgb {
  /// # Example
  /// ```
  /// use colorsys::{Rgb,Hsl,prelude::*};
  /// let hsl = Hsl::from(&(192.0, 67.0, 28.0));
  /// let rgb_string = Rgb::from(hsl).to_css_string();
  /// assert_eq!(rgb_string, "rgb(24,100,119)");
  /// ```
  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()
  }
}