pub trait IDragonRideTargetPopup: IMonoBehaviour {
// Provided methods
fn m_rect_transform(self) -> RectTransform { ... }
fn set_m_rect_transform(self, value: RectTransform) { ... }
fn m_camera(self) -> DragonRideCamera { ... }
fn set_m_camera(self, value: DragonRideCamera) { ... }
fn m_world_pos(self) -> Vector3 { ... }
fn set_m_world_pos(self, value: Vector3) { ... }
fn m_config(self) -> DragonRideConfig { ... }
fn set_m_config(self, value: DragonRideConfig) { ... }
fn m_alive_timer(self) -> f32 { ... }
fn set_m_alive_timer(self, value: f32) { ... }
}Provided Methods§
fn m_rect_transform(self) -> RectTransform
fn set_m_rect_transform(self, value: RectTransform)
fn m_camera(self) -> DragonRideCamera
fn set_m_camera(self, value: DragonRideCamera)
fn m_world_pos(self) -> Vector3
fn set_m_world_pos(self, value: Vector3)
fn m_config(self) -> DragonRideConfig
fn set_m_config(self, value: DragonRideConfig)
fn m_alive_timer(self) -> f32
fn set_m_alive_timer(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.