pub trait FrameStackExt: Frame {
// Required methods
fn stack(self, other: impl Frame + 'static) -> FrameStack;
fn stack_below(self, other: impl Frame + 'static) -> FrameStack;
}
Required Methods§
Sourcefn stack(self, other: impl Frame + 'static) -> FrameStack
fn stack(self, other: impl Frame + 'static) -> FrameStack
Stack another frame on top of this one
Sourcefn stack_below(self, other: impl Frame + 'static) -> FrameStack
fn stack_below(self, other: impl Frame + 'static) -> FrameStack
Stack another frame below this one
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.