pub trait IColorLookup: IVolumeComponent {
// Provided methods
fn texture(self) -> TextureParameter { ... }
fn set_texture(self, value: TextureParameter) { ... }
fn contribution(self) -> ClampedFloatParameter { ... }
fn set_contribution(self, value: ClampedFloatParameter) { ... }
}Provided Methods§
fn texture(self) -> TextureParameter
fn set_texture(self, value: TextureParameter)
fn contribution(self) -> ClampedFloatParameter
fn set_contribution(self, value: ClampedFloatParameter)
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.