pub enum DisplayMode<'a> {
Compact,
Portrait {
labels: &'a [&'a str],
},
}Variants§
Compact
Just the chart.
Portrait
Chart with labels at the bottom. One label is expected for each data point.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DisplayMode<'a>
impl<'a> RefUnwindSafe for DisplayMode<'a>
impl<'a> Send for DisplayMode<'a>
impl<'a> Sync for DisplayMode<'a>
impl<'a> Unpin for DisplayMode<'a>
impl<'a> UnwindSafe for DisplayMode<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more