#[repr(C)]pub struct ChartSlot {
pub type_: u32,
pub color: nk_color,
pub highlight: nk_color,
pub min: f32,
pub max: f32,
pub range: f32,
pub count: i32,
pub last: nk_vec2,
pub index: i32,
}
Fields§
§type_: u32
§color: nk_color
§highlight: nk_color
§min: f32
§max: f32
§range: f32
§count: i32
§last: nk_vec2
§index: i32
Trait Implementations§
Source§impl Clone for nk_chart_slot
impl Clone for nk_chart_slot
Source§fn clone(&self) -> nk_chart_slot
fn clone(&self) -> nk_chart_slot
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 Debug for nk_chart_slot
impl Debug for nk_chart_slot
Source§impl Default for nk_chart_slot
impl Default for nk_chart_slot
Source§fn default() -> nk_chart_slot
fn default() -> nk_chart_slot
Returns the “default value” for a type. Read more
impl Copy for nk_chart_slot
Auto Trait Implementations§
impl Freeze for nk_chart_slot
impl RefUnwindSafe for nk_chart_slot
impl Send for nk_chart_slot
impl Sync for nk_chart_slot
impl Unpin for nk_chart_slot
impl UnwindSafe for nk_chart_slot
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