pub struct ChartAxes {
pub x_label: Option<String>,
pub y_label: Option<String>,
pub x_range: Option<(f64, f64)>,
pub y_range: Option<(f64, f64)>,
}Expand description
Chart axes information
Fields§
§x_label: Option<String>§y_label: Option<String>§x_range: Option<(f64, f64)>§y_range: Option<(f64, f64)>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChartAxes
impl<'de> Deserialize<'de> for ChartAxes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChartAxes
impl RefUnwindSafe for ChartAxes
impl Send for ChartAxes
impl Sync for ChartAxes
impl Unpin for ChartAxes
impl UnwindSafe for ChartAxes
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