pub trait ICurveText: IMonoBehaviour {
// Provided methods
fn m_text_component(self) -> TMP_Text { ... }
fn set_m_text_component(self, value: TMP_Text) { ... }
fn vertex_curve(self) -> AnimationCurve { ... }
fn set_vertex_curve(self, value: AnimationCurve) { ... }
fn m_curve_scale(self) -> f32 { ... }
fn set_m_curve_scale(self, value: f32) { ... }
fn m_is_rotate(self) -> bool { ... }
fn set_m_is_rotate(self, value: bool) { ... }
fn m_use_rect_width(self) -> bool { ... }
fn set_m_use_rect_width(self, value: bool) { ... }
fn m_is_distort(self) -> bool { ... }
fn set_m_is_distort(self, value: bool) { ... }
}Provided Methods§
fn m_text_component(self) -> TMP_Text
fn set_m_text_component(self, value: TMP_Text)
fn vertex_curve(self) -> AnimationCurve
fn set_vertex_curve(self, value: AnimationCurve)
fn m_curve_scale(self) -> f32
fn set_m_curve_scale(self, value: f32)
fn m_is_rotate(self) -> bool
fn set_m_is_rotate(self, value: bool)
fn m_use_rect_width(self) -> bool
fn set_m_use_rect_width(self, value: bool)
fn m_is_distort(self) -> bool
fn set_m_is_distort(self, value: bool)
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.