pub enum LabelAreaPosition {
Top = 0,
Bottom = 1,
Left = 2,
Right = 3,
}
Expand description
The enum used to specify the position of label area. This is used when we configure the label area size with the API ChartBuilder::set_label_area_size(struct ChartBuilder.html#method.set_label_area_size)
Variants§
Trait Implementations§
Source§impl Clone for LabelAreaPosition
impl Clone for LabelAreaPosition
Source§fn clone(&self) -> LabelAreaPosition
fn clone(&self) -> LabelAreaPosition
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for LabelAreaPosition
Auto Trait Implementations§
impl Freeze for LabelAreaPosition
impl RefUnwindSafe for LabelAreaPosition
impl Send for LabelAreaPosition
impl Sync for LabelAreaPosition
impl Unpin for LabelAreaPosition
impl UnwindSafe for LabelAreaPosition
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