Trait palette::convert::IntoColorUnclamped[][src]

pub trait IntoColorUnclamped<T>: Sized {
    fn into_color_unclamped(self) -> T;
}

A trait for unchecked conversion of a color into another.

U: IntoColorUnclamped<T> is implemented for every type T: FromColorUnclamped<U>.

See FromColorUnclamped for more details.

Required methods

fn into_color_unclamped(self) -> T[src]

Convert into T. The resulting color might be invalid in its color space

use palette::convert::IntoColorUnclamped;
use palette::{Clamp, Lch, Srgb};

let rgb: Srgb = Lch::new(50.0, 100.0, -175.0).into_color_unclamped();
assert!(!rgb.is_within_bounds());
Loading content...

Implementors

impl<T, U> IntoColorUnclamped<U> for T where
    U: FromColorUnclamped<T>, 
[src]

Loading content...