pub trait StackExt {
// Required method
fn stack(self, direction: FlexDirection) -> Stack;
// Provided methods
fn v_stack(self) -> Stack
where Self: Sized { ... }
fn h_stack(self) -> Stack
where Self: Sized { ... }
}