Skip to main content

IMotionBlur

Trait IMotionBlur 

Source
pub trait IMotionBlur: IVolumeComponent {
    // Provided methods
    fn mode(self) -> MotionBlurModeParameter { ... }
    fn set_mode(self, value: MotionBlurModeParameter) { ... }
    fn quality(self) -> MotionBlurQualityParameter { ... }
    fn set_quality(self, value: MotionBlurQualityParameter) { ... }
    fn intensity(self) -> ClampedFloatParameter { ... }
    fn set_intensity(self, value: ClampedFloatParameter) { ... }
    fn clamp(self) -> ClampedFloatParameter { ... }
    fn set_clamp(self, value: ClampedFloatParameter) { ... }
}

Provided Methods§

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.

Implementors§