Skip to main content

IGUIScrollGroupMethods

Trait IGUIScrollGroupMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn calc_width(self)

CalcWidth() overload

Source

fn set_horizontal(self, x: impl Into<f32>, width: impl Into<f32>)

SetHorizontal(f32, f32) overload

Source

fn calc_height(self)

CalcHeight() overload

Source

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§

Source§

impl<__T: IGUIScrollGroup> IGUIScrollGroupMethods for __T

Available on crate feature unity_engine-guiscrollgroup only.