pub trait INoInterpFloatRangeParameterMethods: INoInterpFloatRangeParameter {
// Provided methods
fn get_value(self) -> Vector2 { ... }
fn set_value(self, value: impl Into<Vector2>) { ... }
fn ctor(
self,
value: impl Into<Vector2>,
min: impl Into<f32>,
max: impl Into<f32>,
override_state: impl Into<bool>,
) { ... }
}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§
impl<__T: INoInterpFloatRangeParameter> INoInterpFloatRangeParameterMethods for __T
Available on crate feature
unity_engine-rendering-nointerpfloatrangeparameter only.