mirror of
https://github.com/dankamongmen/notcurses
synced 2025-04-05 06:10:04 -04:00
Create new wrapping types that can safely encapsulate the mutable references, and implement Drop and automatic (de)referencing. - Notcurses - rename Notcurses* to NcNotcurses*. - rename NotcursesOptions to NcNotcursesOptions. - new Notcurses struct. - implement Drop, AsRef, AsMut, Deref & DerefMut. - override stop method to be no-op. - reimplement constructors and associated methods. - remove without_altscreen_with_banners constructor. - update examples and tests. - rustfmt.
16 lines
322 B
Rust
16 lines
322 B
Rust
use libnotcurses_sys::*;
|
|
|
|
fn main() -> NcResult<()> {
|
|
let mut nc = Notcurses::new()?;
|
|
let stdplane = nc.stdplane()?;
|
|
|
|
for ch in "Initializing cells...".chars() {
|
|
let cell = NcCell::with_char7b(ch);
|
|
stdplane.putc(&cell)?;
|
|
rsleep![&mut nc, 0, 40];
|
|
}
|
|
sleep![0, 900];
|
|
|
|
Ok(())
|
|
}
|