mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-24 01:46:31 +00:00
16 lines
348 B
Rust
16 lines
348 B
Rust
|
enum_set_type! {
|
||
|
/// Text effect
|
||
|
pub enum Effect {
|
||
|
/// No effect
|
||
|
Simple,
|
||
|
/// Reverses foreground and background colors
|
||
|
Reverse,
|
||
|
/// Prints foreground in bold
|
||
|
Bold,
|
||
|
/// Prints foreground in italic
|
||
|
Italic,
|
||
|
/// Prints foreground with underline
|
||
|
Underline,
|
||
|
}
|
||
|
}
|