ImPlotContext

Struct ImPlotContext 

Source
#[repr(C)]
pub struct ImPlotContext {
Show 30 fields pub Plots: ImPool_ImPlotPlot, pub Subplots: ImPool_ImPlotSubplot, pub CurrentPlot: *mut ImPlotPlot, pub CurrentSubplot: *mut ImPlotSubplot, pub CurrentItems: *mut ImPlotItemGroup, pub CurrentItem: *mut ImPlotItem, pub PreviousItem: *mut ImPlotItem, pub CTicker: ImPlotTicker, pub Annotations: ImPlotAnnotationCollection, pub Tags: ImPlotTagCollection, pub Style: ImPlotStyle, pub ColorModifiers: ImVector_ImGuiColorMod, pub StyleModifiers: ImVector_ImGuiStyleMod, pub ColormapData: ImPlotColormapData, pub ColormapModifiers: ImVector_ImPlotColormap, pub Tm: tm, pub TempDouble1: ImVector_double, pub TempDouble2: ImVector_double, pub TempInt1: ImVector_int, pub DigitalPlotItemCnt: c_int, pub DigitalPlotOffset: c_int, pub NextPlotData: ImPlotNextPlotData, pub NextItemData: ImPlotNextItemData, pub InputMap: ImPlotInputMap, pub OpenContextThisFrame: bool, pub MousePosStringBuilder: ImGuiTextBuffer, pub SortItems: *mut ImPlotItemGroup, pub AlignmentData: ImPool_ImPlotAlignmentData, pub CurrentAlignmentH: *mut ImPlotAlignmentData, pub CurrentAlignmentV: *mut ImPlotAlignmentData,
}

Fields§

§Plots: ImPool_ImPlotPlot§Subplots: ImPool_ImPlotSubplot§CurrentPlot: *mut ImPlotPlot§CurrentSubplot: *mut ImPlotSubplot§CurrentItems: *mut ImPlotItemGroup§CurrentItem: *mut ImPlotItem§PreviousItem: *mut ImPlotItem§CTicker: ImPlotTicker§Annotations: ImPlotAnnotationCollection§Tags: ImPlotTagCollection§Style: ImPlotStyle§ColorModifiers: ImVector_ImGuiColorMod§StyleModifiers: ImVector_ImGuiStyleMod§ColormapData: ImPlotColormapData§ColormapModifiers: ImVector_ImPlotColormap§Tm: tm§TempDouble1: ImVector_double§TempDouble2: ImVector_double§TempInt1: ImVector_int§DigitalPlotItemCnt: c_int§DigitalPlotOffset: c_int§NextPlotData: ImPlotNextPlotData§NextItemData: ImPlotNextItemData§InputMap: ImPlotInputMap§OpenContextThisFrame: bool§MousePosStringBuilder: ImGuiTextBuffer§SortItems: *mut ImPlotItemGroup§AlignmentData: ImPool_ImPlotAlignmentData§CurrentAlignmentH: *mut ImPlotAlignmentData§CurrentAlignmentV: *mut ImPlotAlignmentData

Trait Implementations§

Source§

impl Default for ImPlotContext

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.