use std::borrow::Cow;
#[derive(Debug, Clone, Default)]
pub enum Style {
#[default]
ASCII,
Block,
Balloon,
Custom(Cow<'static, str>),
}
impl AsRef<str> for Style {
fn as_ref(&self) -> &str {
match self {
Self::ASCII => "#0123456789 ",
Self::Block => "█ ▏▎▍▌▋▊▉ ",
Self::Balloon => "*.oO@ ",
Self::Custom(s) => s,
}
}
}