pub trait IGUIScrollGroupMethods: IGUIScrollGroup {
// Provided methods
fn ctor(self) { ... }
fn calc_width(self) { ... }
fn set_horizontal(self, x: impl Into<f32>, width: impl Into<f32>) { ... }
fn calc_height(self) { ... }
fn set_vertical(self, y: impl Into<f32>, height: impl Into<f32>) { ... }
}Provided Methods§
Sourcefn calc_width(self)
fn calc_width(self)
CalcWidth() overload
Sourcefn set_horizontal(self, x: impl Into<f32>, width: impl Into<f32>)
fn set_horizontal(self, x: impl Into<f32>, width: impl Into<f32>)
SetHorizontal(f32, f32) overload
Sourcefn calc_height(self)
fn calc_height(self)
CalcHeight() overload
Sourcefn set_vertical(self, y: impl Into<f32>, height: impl Into<f32>)
fn set_vertical(self, y: impl Into<f32>, height: impl Into<f32>)
SetVertical(f32, f32) overload
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.
Implementors§
impl<__T: IGUIScrollGroup> IGUIScrollGroupMethods for __T
Available on crate feature
unity_engine-guiscrollgroup only.