Skip to main content

INoInterpFloatRangeParameterMethods

Trait INoInterpFloatRangeParameterMethods 

Source
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§

Source

fn get_value(self) -> Vector2

get_value() overload

Source

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

set_value(crate::unity_engine::vector2::Vector2) overload

Source

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

.ctor(crate::unity_engine::vector2::Vector2, 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: INoInterpFloatRangeParameter> INoInterpFloatRangeParameterMethods for __T

Available on crate feature unity_engine-rendering-nointerpfloatrangeparameter only.