Skip to main content

IJobIntroTitleSetter

Trait IJobIntroTitleSetter 

Source
pub trait IJobIntroTitleSetter: IMonoBehaviour {
    // Provided methods
    fn job_name(self) -> TextMeshProUGUI { ... }
    fn set_job_name(self, value: TextMeshProUGUI) { ... }
    fn ready_time1(self) -> f32 { ... }
    fn set_ready_time1(self, value: f32) { ... }
    fn ready_time2(self) -> f32 { ... }
    fn set_ready_time2(self, value: f32) { ... }
}

Provided Methods§

Source

fn job_name(self) -> TextMeshProUGUI

Source

fn set_job_name(self, value: TextMeshProUGUI)

Source

fn ready_time1(self) -> f32

Source

fn set_ready_time1(self, value: f32)

Source

fn ready_time2(self) -> f32

Source

fn set_ready_time2(self, value: f32)

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§