Struct gtk_sys::GtkStyle

source ·
#[repr(C)]
pub struct GtkStyle {
Show 14 fields pub parent_instance: GObject, pub fg: [GdkColor; 5], pub bg: [GdkColor; 5], pub light: [GdkColor; 5], pub dark: [GdkColor; 5], pub mid: [GdkColor; 5], pub text: [GdkColor; 5], pub base: [GdkColor; 5], pub text_aa: [GdkColor; 5], pub black: GdkColor, pub white: GdkColor, pub font_desc: *mut PangoFontDescription, pub xthickness: c_int, pub ythickness: c_int, /* private fields */
}

Fields§

§parent_instance: GObject§fg: [GdkColor; 5]§bg: [GdkColor; 5]§light: [GdkColor; 5]§dark: [GdkColor; 5]§mid: [GdkColor; 5]§text: [GdkColor; 5]§base: [GdkColor; 5]§text_aa: [GdkColor; 5]§black: GdkColor§white: GdkColor§font_desc: *mut PangoFontDescription§xthickness: c_int§ythickness: c_int

Trait Implementations§

source§

impl Debug for GtkStyle

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.