Trait FrameStackExt

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

Source

fn stack(self, other: impl Frame + 'static) -> FrameStack

Stack another frame on top of this one

Source

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.

Implementors§

Source§

impl<T: Frame + 'static> FrameStackExt for T