pub trait IEventCamera: IMonoBehaviour {
// Provided methods
fn m_view_mode(self) -> ViewMode_Mode { ... }
fn set_m_view_mode(self, value: ViewMode_Mode) { ... }
fn m_main_camera(self) -> Camera { ... }
fn set_m_main_camera(self, value: Camera) { ... }
fn m_camera(self) -> Camera { ... }
fn set_m_camera(self, value: Camera) { ... }
fn m_animation(self) -> SimpleAnimation { ... }
fn set_m_animation(self, value: SimpleAnimation) { ... }
}Provided Methods§
fn m_view_mode(self) -> ViewMode_Mode
fn set_m_view_mode(self, value: ViewMode_Mode)
fn m_main_camera(self) -> Camera
fn set_m_main_camera(self, value: Camera)
fn m_camera(self) -> Camera
fn set_m_camera(self, value: Camera)
fn m_animation(self) -> SimpleAnimation
fn set_m_animation(self, value: SimpleAnimation)
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.