pub trait IFishingConfig_Result: IMonoBehaviour {
// Provided methods
fn m_result_time(self) -> f32 { ... }
fn set_m_result_time(self, value: f32) { ... }
fn m_result_fade_in_type(self) -> FadeType { ... }
fn set_m_result_fade_in_type(self, value: FadeType) { ... }
fn m_result_camera(self) -> FixCameraConfig { ... }
fn set_m_result_camera(self, value: FixCameraConfig) { ... }
fn m_result_player_rot_y(self) -> f32 { ... }
fn set_m_result_player_rot_y(self, value: f32) { ... }
}Provided Methods§
fn m_result_time(self) -> f32
fn set_m_result_time(self, value: f32)
fn m_result_fade_in_type(self) -> FadeType
fn set_m_result_fade_in_type(self, value: FadeType)
fn m_result_camera(self) -> FixCameraConfig
fn set_m_result_camera(self, value: FixCameraConfig)
fn m_result_player_rot_y(self) -> f32
fn set_m_result_player_rot_y(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.