notcurses 3.6.0

A high level Rust wrapper for the notcurses C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// notcurses::color
//
//!
//

mod alpha;
mod channel;
mod channels;
mod palette;
mod rgb;

pub use self::rgb::{Rgb, Rgba};
pub use alpha::Alpha;
pub use channel::Channel;
pub use channels::Channels;
pub use palette::Palette;