Struct ImGuiStyle

Source
#[repr(C)]
pub struct ImGuiStyle {
Show 41 fields pub Alpha: f32, pub DisabledAlpha: f32, pub WindowPadding: ImVec2, pub WindowRounding: f32, pub WindowBorderSize: f32, pub WindowMinSize: ImVec2, pub WindowTitleAlign: ImVec2, pub WindowMenuButtonPosition: i32, pub ChildRounding: f32, pub ChildBorderSize: f32, pub PopupRounding: f32, pub PopupBorderSize: f32, pub FramePadding: ImVec2, pub FrameRounding: f32, pub FrameBorderSize: f32, pub ItemSpacing: ImVec2, pub ItemInnerSpacing: ImVec2, pub CellPadding: ImVec2, pub TouchExtraPadding: ImVec2, pub IndentSpacing: f32, pub ColumnsMinSpacing: f32, pub ScrollbarSize: f32, pub ScrollbarRounding: f32, pub GrabMinSize: f32, pub GrabRounding: f32, pub LogSliderDeadzone: f32, pub TabRounding: f32, pub TabBorderSize: f32, pub TabMinWidthForCloseButton: f32, pub ColorButtonPosition: i32, pub ButtonTextAlign: ImVec2, pub SelectableTextAlign: ImVec2, pub DisplayWindowPadding: ImVec2, pub DisplaySafeAreaPadding: ImVec2, pub MouseCursorScale: f32, pub AntiAliasedLines: bool, pub AntiAliasedLinesUseTex: bool, pub AntiAliasedFill: bool, pub CurveTessellationTol: f32, pub CircleTessellationMaxError: f32, pub Colors: [ImVec4; 53],
}

Fields§

§Alpha: f32§DisabledAlpha: f32§WindowPadding: ImVec2§WindowRounding: f32§WindowBorderSize: f32§WindowMinSize: ImVec2§WindowTitleAlign: ImVec2§WindowMenuButtonPosition: i32§ChildRounding: f32§ChildBorderSize: f32§PopupRounding: f32§PopupBorderSize: f32§FramePadding: ImVec2§FrameRounding: f32§FrameBorderSize: f32§ItemSpacing: ImVec2§ItemInnerSpacing: ImVec2§CellPadding: ImVec2§TouchExtraPadding: ImVec2§IndentSpacing: f32§ColumnsMinSpacing: f32§ScrollbarSize: f32§ScrollbarRounding: f32§GrabMinSize: f32§GrabRounding: f32§LogSliderDeadzone: f32§TabRounding: f32§TabBorderSize: f32§TabMinWidthForCloseButton: f32§ColorButtonPosition: i32§ButtonTextAlign: ImVec2§SelectableTextAlign: ImVec2§DisplayWindowPadding: ImVec2§DisplaySafeAreaPadding: ImVec2§MouseCursorScale: f32§AntiAliasedLines: bool§AntiAliasedLinesUseTex: bool§AntiAliasedFill: bool§CurveTessellationTol: f32§CircleTessellationMaxError: f32§Colors: [ImVec4; 53]

Trait Implementations§

Source§

impl Clone for ImGuiStyle

Source§

fn clone(&self) -> ImGuiStyle

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 ImGuiStyle

Source§

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

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

impl Default for ImGuiStyle

Source§

fn default() -> ImGuiStyle

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

impl PartialEq for ImGuiStyle

Source§

fn eq(&self, other: &ImGuiStyle) -> 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 RawCast<ImGuiStyle> for Style

Source§

unsafe fn from_raw(raw: &T) -> &Self

Casts an immutable reference from the raw type Read more
Source§

unsafe fn from_raw_mut(raw: &mut T) -> &mut Self

Casts a mutable reference from the raw type Read more
Source§

unsafe fn raw(&self) -> &T

Casts an immutable reference to the raw type Read more
Source§

unsafe fn raw_mut(&mut self) -> &mut T

Casts a mutable reference to the raw type Read more
Source§

impl Copy for ImGuiStyle

Source§

impl StructuralPartialEq for ImGuiStyle

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

Source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
Source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
Source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V