pub trait IGUIScrollGroup: IGUILayoutGroup {
Show 24 methods
// Provided methods
fn calc_min_width(self) -> f32 { ... }
fn set_calc_min_width(self, value: f32) { ... }
fn calc_max_width(self) -> f32 { ... }
fn set_calc_max_width(self, value: f32) { ... }
fn calc_min_height(self) -> f32 { ... }
fn set_calc_min_height(self, value: f32) { ... }
fn calc_max_height(self) -> f32 { ... }
fn set_calc_max_height(self, value: f32) { ... }
fn client_width(self) -> f32 { ... }
fn set_client_width(self, value: f32) { ... }
fn client_height(self) -> f32 { ... }
fn set_client_height(self, value: f32) { ... }
fn allow_horizontal_scroll(self) -> bool { ... }
fn set_allow_horizontal_scroll(self, value: bool) { ... }
fn allow_vertical_scroll(self) -> bool { ... }
fn set_allow_vertical_scroll(self, value: bool) { ... }
fn needs_horizontal_scrollbar(self) -> bool { ... }
fn set_needs_horizontal_scrollbar(self, value: bool) { ... }
fn needs_vertical_scrollbar(self) -> bool { ... }
fn set_needs_vertical_scrollbar(self, value: bool) { ... }
fn horizontal_scrollbar(self) -> GUIStyle { ... }
fn set_horizontal_scrollbar(self, value: GUIStyle) { ... }
fn vertical_scrollbar(self) -> GUIStyle { ... }
fn set_vertical_scrollbar(self, value: GUIStyle) { ... }
}Provided Methods§
fn calc_min_width(self) -> f32
fn set_calc_min_width(self, value: f32)
fn calc_max_width(self) -> f32
fn set_calc_max_width(self, value: f32)
fn calc_min_height(self) -> f32
fn set_calc_min_height(self, value: f32)
fn calc_max_height(self) -> f32
fn set_calc_max_height(self, value: f32)
fn client_width(self) -> f32
fn set_client_width(self, value: f32)
fn client_height(self) -> f32
fn set_client_height(self, value: f32)
fn allow_horizontal_scroll(self) -> bool
fn set_allow_horizontal_scroll(self, value: bool)
fn allow_vertical_scroll(self) -> bool
fn set_allow_vertical_scroll(self, value: bool)
fn needs_horizontal_scrollbar(self) -> bool
fn set_needs_horizontal_scrollbar(self, value: bool)
fn needs_vertical_scrollbar(self) -> bool
fn set_needs_vertical_scrollbar(self, value: bool)
fn horizontal_scrollbar(self) -> GUIStyle
fn set_horizontal_scrollbar(self, value: GUIStyle)
fn vertical_scrollbar(self) -> GUIStyle
fn set_vertical_scrollbar(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.