pub trait IGUIWordWrapSizer: IGUILayoutEntry {
// Provided methods
fn m_content(self) -> GUIContent { ... }
fn set_m_content(self, value: GUIContent) { ... }
fn m_forced_min_height(self) -> f32 { ... }
fn set_m_forced_min_height(self, value: f32) { ... }
fn m_forced_max_height(self) -> f32 { ... }
fn set_m_forced_max_height(self, value: f32) { ... }
}Provided Methods§
fn m_content(self) -> GUIContent
fn set_m_content(self, value: GUIContent)
fn m_forced_min_height(self) -> f32
fn set_m_forced_min_height(self, value: f32)
fn m_forced_max_height(self) -> f32
fn set_m_forced_max_height(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.