#[repr(C)]pub enum ChartEvent {
Hovering = 1,
Clicked = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for ChartEvent
impl Clone for ChartEvent
Source§fn clone(&self) -> ChartEvent
fn clone(&self) -> ChartEvent
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> From<&'a u32> for &'a ChartEvent
impl<'a> From<&'a u32> for &'a ChartEvent
Source§fn from(a: &'a nk_chart_event) -> &'a ChartEvent
fn from(a: &'a nk_chart_event) -> &'a ChartEvent
Converts to this type from the input type.
Source§impl From<ChartEvent> for nk_chart_event
impl From<ChartEvent> for nk_chart_event
Source§fn from(a: ChartEvent) -> nk_chart_event
fn from(a: ChartEvent) -> nk_chart_event
Converts to this type from the input type.
Source§impl From<u32> for ChartEvent
impl From<u32> for ChartEvent
Source§fn from(a: nk_chart_event) -> ChartEvent
fn from(a: nk_chart_event) -> ChartEvent
Converts to this type from the input type.
Source§impl PartialEq for ChartEvent
impl PartialEq for ChartEvent
impl Copy for ChartEvent
impl Eq for ChartEvent
impl StructuralPartialEq for ChartEvent
Auto Trait Implementations§
impl Freeze for ChartEvent
impl RefUnwindSafe for ChartEvent
impl Send for ChartEvent
impl Sync for ChartEvent
impl Unpin for ChartEvent
impl UnwindSafe for ChartEvent
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