pub trait IGUILayout_LayoutedWindow: IObject {
// Provided methods
fn m_func(self) -> GUI_WindowFunction { ... }
fn set_m_func(self, value: GUI_WindowFunction) { ... }
fn m_screen_rect(self) -> Rect { ... }
fn set_m_screen_rect(self, value: Rect) { ... }
fn m_options(self) -> Array<GUILayoutOption> { ... }
fn set_m_options(self, value: Array<GUILayoutOption>) { ... }
fn m_style(self) -> GUIStyle { ... }
fn set_m_style(self, value: GUIStyle) { ... }
}Provided Methods§
fn m_func(self) -> GUI_WindowFunction
fn set_m_func(self, value: GUI_WindowFunction)
fn m_screen_rect(self) -> Rect
fn set_m_screen_rect(self, value: Rect)
fn m_options(self) -> Array<GUILayoutOption>
fn set_m_options(self, value: Array<GUILayoutOption>)
fn m_style(self) -> GUIStyle
fn set_m_style(self, value: GUIStyle)
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.