pub struct AxisLabels {
pub low: String,
pub high: String,
}Expand description
Axis label pair for one dimension of the quadrant chart.
low is the label at the origin-side of the axis;
high is the label at the far end.
Fields§
§low: String§high: StringTrait Implementations§
Source§impl Clone for AxisLabels
impl Clone for AxisLabels
Source§fn clone(&self) -> AxisLabels
fn clone(&self) -> AxisLabels
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AxisLabels
impl Debug for AxisLabels
Source§impl Default for AxisLabels
impl Default for AxisLabels
Source§fn default() -> AxisLabels
fn default() -> AxisLabels
Returns the “default value” for a type. Read more
Source§impl PartialEq for AxisLabels
impl PartialEq for AxisLabels
Source§fn eq(&self, other: &AxisLabels) -> bool
fn eq(&self, other: &AxisLabels) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AxisLabels
impl StructuralPartialEq for AxisLabels
Auto Trait Implementations§
impl Freeze for AxisLabels
impl RefUnwindSafe for AxisLabels
impl Send for AxisLabels
impl Sync for AxisLabels
impl Unpin for AxisLabels
impl UnsafeUnpin for AxisLabels
impl UnwindSafe for AxisLabels
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