pub trait ISharedCanvas: IMonoBehaviour {
// Provided methods
fn m_canvas(self) -> Canvas { ... }
fn set_m_canvas(self, value: Canvas) { ... }
fn m_b_shown(self) -> EditorPrefs_Bool { ... }
fn set_m_b_shown(self, value: EditorPrefs_Bool) { ... }
}Provided Methods§
fn m_canvas(self) -> Canvas
fn set_m_canvas(self, value: Canvas)
fn m_b_shown(self) -> EditorPrefs_Bool
fn set_m_b_shown(self, value: EditorPrefs_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.