BarDescArg

Trait BarDescArg 

Source
pub trait BarDescArg {
    // Required method
    fn as_bar_desc(&self) -> Vec<BarDesc>;

    // Provided method
    fn as_single_bar_desc(&self) -> BarDesc { ... }
}

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Source§

impl BarDescArg for &str

Source§

impl BarDescArg for &[&str]

Source§

impl BarDescArg for &[(&str, Color)]

Source§

impl BarDescArg for &[BarDesc]

Source§

impl BarDescArg for (&str, Color)

Source§

impl<const N: usize> BarDescArg for &[&str; N]

Source§

impl<const N: usize> BarDescArg for &[(&str, Color); N]

Source§

impl<const N: usize> BarDescArg for [&str; N]

Source§

impl<const N: usize> BarDescArg for [(&str, Color); N]

Implementors§