pub struct DataBounds {
pub x_min: f64,
pub x_max: f64,
pub y_min: f64,
pub y_max: f64,
}Expand description
Axis-aligned bounding box for data in a series.
Fields§
§x_min: f64Minimum X value.
x_max: f64Maximum X value.
y_min: f64Minimum Y value.
y_max: f64Maximum Y value.
Implementations§
Trait Implementations§
Source§impl Clone for DataBounds
impl Clone for DataBounds
Source§fn clone(&self) -> DataBounds
fn clone(&self) -> DataBounds
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 DataBounds
impl Debug for DataBounds
impl Copy for DataBounds
Auto Trait Implementations§
impl Freeze for DataBounds
impl RefUnwindSafe for DataBounds
impl Send for DataBounds
impl Sync for DataBounds
impl Unpin for DataBounds
impl UnsafeUnpin for DataBounds
impl UnwindSafe for DataBounds
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