ImPlot3DStyle_c

Struct ImPlot3DStyle_c 

Source
#[repr(C)]
pub struct ImPlot3DStyle_c {
Show 15 fields pub LineWeight: f32, pub Marker: c_int, pub MarkerSize: f32, pub MarkerWeight: f32, pub FillAlpha: f32, pub PlotDefaultSize: ImVec2_c, pub PlotMinSize: ImVec2_c, pub PlotPadding: ImVec2_c, pub LabelPadding: ImVec2_c, pub ViewScaleFactor: f32, pub LegendPadding: ImVec2_c, pub LegendInnerPadding: ImVec2_c, pub LegendSpacing: ImVec2_c, pub Colors: [ImVec4_c; 15], pub Colormap: ImPlot3DColormap,
}

Fields§

§LineWeight: f32§Marker: c_int§MarkerSize: f32§MarkerWeight: f32§FillAlpha: f32§PlotDefaultSize: ImVec2_c§PlotMinSize: ImVec2_c§PlotPadding: ImVec2_c§LabelPadding: ImVec2_c§ViewScaleFactor: f32§LegendPadding: ImVec2_c§LegendInnerPadding: ImVec2_c§LegendSpacing: ImVec2_c§Colors: [ImVec4_c; 15]§Colormap: ImPlot3DColormap

Trait Implementations§

Source§

impl Clone for ImPlot3DStyle_c

Source§

fn clone(&self) -> ImPlot3DStyle_c

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ImPlot3DStyle_c

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ImPlot3DStyle_c

Source§

fn default() -> ImPlot3DStyle_c

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

impl PartialEq for ImPlot3DStyle_c

Source§

fn eq(&self, other: &ImPlot3DStyle_c) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for ImPlot3DStyle_c

Source§

impl StructuralPartialEq for ImPlot3DStyle_c

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.