animaterm 0.2.9

An easy to use terminal user interface library with keyboard macros support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::Glyph;
use super::Graphic;
#[derive(Debug)]
/// List of successful results after performing an action.
pub enum AnimOk {
    AnimationAdded(usize),
    FrameAdded(usize, usize),
    AllResultsRead,
    DisplayCreated(usize),
    DisplayRestored(usize),
    GlyphRetrieved(usize, Glyph),
    GraphicAdded(usize),
    GraphicCreated(Graphic),
    PrintScreen(Vec<String>),
    FrameSwapped(Vec<Glyph>),
}