Struct implot_sys::ImPlotStyle[][src]

#[repr(C)]pub struct ImPlotStyle {
    pub LineWeight: f32,
    pub Marker: c_int,
    pub MarkerSize: f32,
    pub MarkerWeight: f32,
    pub FillAlpha: f32,
    pub ErrorBarSize: f32,
    pub ErrorBarWeight: f32,
    pub DigitalBitHeight: f32,
    pub DigitalBitGap: f32,
    pub PlotBorderSize: f32,
    pub MinorAlpha: f32,
    pub MajorTickLen: ImVec2,
    pub MinorTickLen: ImVec2,
    pub MajorTickSize: ImVec2,
    pub MinorTickSize: ImVec2,
    pub MajorGridSize: ImVec2,
    pub MinorGridSize: ImVec2,
    pub PlotPadding: ImVec2,
    pub LabelPadding: ImVec2,
    pub LegendPadding: ImVec2,
    pub LegendInnerPadding: ImVec2,
    pub LegendSpacing: ImVec2,
    pub MousePosPadding: ImVec2,
    pub AnnotationPadding: ImVec2,
    pub FitPadding: ImVec2,
    pub PlotDefaultSize: ImVec2,
    pub PlotMinSize: ImVec2,
    pub Colors: [ImVec4; 24],
    pub AntiAliasedLines: bool,
    pub UseLocalTime: bool,
    pub UseISO8601: bool,
    pub Use24HourClock: bool,
}

Fields

LineWeight: f32Marker: c_intMarkerSize: f32MarkerWeight: f32FillAlpha: f32ErrorBarSize: f32ErrorBarWeight: f32DigitalBitHeight: f32DigitalBitGap: f32PlotBorderSize: f32MinorAlpha: f32MajorTickLen: ImVec2MinorTickLen: ImVec2MajorTickSize: ImVec2MinorTickSize: ImVec2MajorGridSize: ImVec2MinorGridSize: ImVec2PlotPadding: ImVec2LabelPadding: ImVec2LegendPadding: ImVec2LegendInnerPadding: ImVec2LegendSpacing: ImVec2MousePosPadding: ImVec2AnnotationPadding: ImVec2FitPadding: ImVec2PlotDefaultSize: ImVec2PlotMinSize: ImVec2Colors: [ImVec4; 24]AntiAliasedLines: boolUseLocalTime: boolUseISO8601: boolUse24HourClock: bool

Trait Implementations

impl Clone for ImPlotStyle[src]

impl Copy for ImPlotStyle[src]

impl Debug for ImPlotStyle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.