DivideUtilities

Trait DivideUtilities 

Source
pub trait DivideUtilities {
    // Required methods
    fn divide_width(self, width: DivideWidth) -> Self;
    fn divide_width_x(self, width: DivideWidth) -> Self;
    fn divide_width_y(self, width: DivideWidth) -> Self;
    fn divide_style(self, style: DivideStyle) -> Self;
}
Expand description

Trait for adding divide utilities to a class builder

Required Methods§

Source

fn divide_width(self, width: DivideWidth) -> Self

Source

fn divide_width_x(self, width: DivideWidth) -> Self

Source

fn divide_width_y(self, width: DivideWidth) -> Self

Source

fn divide_style(self, style: DivideStyle) -> Self

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§