Skip to main content

tui_overlay/
slide.rs

1/// Edge the overlay enters from during animation.
2#[derive(Debug, Clone, Copy, PartialEq, Eq)]
3pub enum Slide {
4    Left,
5    Right,
6    Top,
7    Bottom,
8}