#[repr(i32)]pub enum StyleVar {
Show 40 variants
Alpha = 0,
DisabledAlpha = 1,
WindowPadding = 2,
WindowRounding = 3,
WindowBorderSize = 4,
WindowMinSize = 5,
WindowTitleAlign = 6,
ChildRounding = 7,
ChildBorderSize = 8,
PopupRounding = 9,
PopupBorderSize = 10,
FramePadding = 11,
FrameRounding = 12,
FrameBorderSize = 13,
ItemSpacing = 14,
ItemInnerSpacing = 15,
IndentSpacing = 16,
CellPadding = 17,
ScrollbarSize = 18,
ScrollbarRounding = 19,
ScrollbarPadding = 20,
GrabMinSize = 21,
GrabRounding = 22,
ImageBorderSize = 23,
TabRounding = 24,
TabBorderSize = 25,
TabMinWidthBase = 26,
TabMinWidthShrink = 27,
TabBarBorderSize = 28,
TabBarOverlineSize = 29,
TableAngledHeadersAngle = 30,
TableAngledHeadersTextAlign = 31,
TreeLinesSize = 32,
TreeLinesRounding = 33,
ButtonTextAlign = 34,
SelectableTextAlign = 35,
SeparatorTextBorderSize = 36,
SeparatorTextAlign = 37,
SeparatorTextPadding = 38,
DockingSeparatorSize = 39,
}Variants§
Alpha = 0
DisabledAlpha = 1
WindowPadding = 2
WindowRounding = 3
WindowBorderSize = 4
WindowMinSize = 5
WindowTitleAlign = 6
ChildRounding = 7
ChildBorderSize = 8
PopupRounding = 9
PopupBorderSize = 10
FramePadding = 11
FrameRounding = 12
FrameBorderSize = 13
ItemSpacing = 14
ItemInnerSpacing = 15
IndentSpacing = 16
CellPadding = 17
ScrollbarSize = 18
ScrollbarRounding = 19
ScrollbarPadding = 20
GrabMinSize = 21
GrabRounding = 22
ImageBorderSize = 23
TabRounding = 24
TabBorderSize = 25
TabMinWidthBase = 26
TabMinWidthShrink = 27
TabBarBorderSize = 28
TabBarOverlineSize = 29
TableAngledHeadersAngle = 30
TableAngledHeadersTextAlign = 31
TreeLinesSize = 32
TreeLinesRounding = 33
ButtonTextAlign = 34
SelectableTextAlign = 35
SeparatorTextBorderSize = 36
SeparatorTextAlign = 37
SeparatorTextPadding = 38
DockingSeparatorSize = 39
Implementations§
Trait Implementations§
Source§impl Ord for StyleVar
impl Ord for StyleVar
Source§impl PartialOrd for StyleVar
impl PartialOrd for StyleVar
impl Copy for StyleVar
impl Eq for StyleVar
impl StructuralPartialEq for StyleVar
Auto Trait Implementations§
impl Freeze for StyleVar
impl RefUnwindSafe for StyleVar
impl Send for StyleVar
impl Sync for StyleVar
impl Unpin for StyleVar
impl UnwindSafe for StyleVar
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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