pub trait RelativePanelChildExt: LayoutControl + Sized {
// Provided methods
fn relative_align_left(self) -> Self { ... }
fn relative_align_top(self) -> Self { ... }
fn relative_align_right(self) -> Self { ... }
fn relative_align_bottom(self) -> Self { ... }
fn relative_align_horizontal_center(self) -> Self { ... }
fn relative_align_vertical_center(self) -> Self { ... }
}Expand description
Places a concrete native control in its parent RelativePanel.
Provided Methods§
fn relative_align_left(self) -> Self
fn relative_align_top(self) -> Self
fn relative_align_right(self) -> Self
fn relative_align_bottom(self) -> Self
fn relative_align_horizontal_center(self) -> Self
fn relative_align_vertical_center(self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".