pub trait IntoLinear<L, E> {
// Required method
fn into_linear(encoded: E) -> L;
}
Expand description
A transfer function to linear space.
Required Methods§
Sourcefn into_linear(encoded: E) -> L
fn into_linear(encoded: E) -> L
Convert the color component encoded
into linear space.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.