pub struct HoverState {
pub index: usize,
pub client_x: f64,
pub client_y: f64,
}Expand description
Snapshot of where the cursor is in the chart.
client_x / client_y are viewport-relative CSS pixels (what
MouseEvent.client_x() reports). The tooltip div uses them to
position itself relative to its containing block via inline style.
Fields§
§index: usizeIndex into the chart’s data array.
client_x: f64Viewport X in CSS pixels (for tooltip positioning).
client_y: f64Viewport Y in CSS pixels.
Trait Implementations§
Source§impl Clone for HoverState
impl Clone for HoverState
Source§fn clone(&self) -> HoverState
fn clone(&self) -> HoverState
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 moreimpl Copy for HoverState
Source§impl Debug for HoverState
impl Debug for HoverState
Source§impl PartialEq for HoverState
impl PartialEq for HoverState
Source§fn eq(&self, other: &HoverState) -> bool
fn eq(&self, other: &HoverState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HoverState
Auto Trait Implementations§
impl Freeze for HoverState
impl RefUnwindSafe for HoverState
impl Send for HoverState
impl Sync for HoverState
impl Unpin for HoverState
impl UnsafeUnpin for HoverState
impl UnwindSafe for HoverState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.