Skip to main content

INoInterpClampedFloatParameterMethods

Trait INoInterpClampedFloatParameterMethods 

Source
pub trait INoInterpClampedFloatParameterMethods: INoInterpClampedFloatParameter {
    // Provided methods
    fn get_value(self) -> f32 { ... }
    fn set_value(self, value: impl Into<f32>) { ... }
    fn ctor(
        self,
        value: impl Into<f32>,
        min: impl Into<f32>,
        max: impl Into<f32>,
        override_state: impl Into<bool>,
    ) { ... }
}

Provided Methods§

Source

fn get_value(self) -> f32

get_value() overload

Source

fn set_value(self, value: impl Into<f32>)

set_value(f32) overload

Source

fn ctor( self, value: impl Into<f32>, min: impl Into<f32>, max: impl Into<f32>, override_state: impl Into<bool>, )

.ctor(f32, f32, f32, bool) overload

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§

Source§

impl<__T: INoInterpClampedFloatParameter> INoInterpClampedFloatParameterMethods for __T

Available on crate feature unity_engine-rendering-nointerpclampedfloatparameter only.