pub struct ChartPoint {
pub x: f64,
pub y: f64,
}Expand description
One numeric chart point.
Fields§
§x: f64§y: f64Trait Implementations§
Source§impl Clone for ChartPoint
impl Clone for ChartPoint
Source§fn clone(&self) -> ChartPoint
fn clone(&self) -> ChartPoint
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 ChartPoint
impl Debug for ChartPoint
Source§impl<'de> Deserialize<'de> for ChartPoint
impl<'de> Deserialize<'de> for ChartPoint
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
Source§impl PartialEq for ChartPoint
impl PartialEq for ChartPoint
Source§fn eq(&self, other: &ChartPoint) -> bool
fn eq(&self, other: &ChartPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChartPoint
impl Serialize for ChartPoint
impl Copy for ChartPoint
impl StructuralPartialEq for ChartPoint
Auto Trait Implementations§
impl Freeze for ChartPoint
impl RefUnwindSafe for ChartPoint
impl Send for ChartPoint
impl Sync for ChartPoint
impl Unpin for ChartPoint
impl UnsafeUnpin for ChartPoint
impl UnwindSafe for ChartPoint
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