Struct newtColors

Source
#[repr(C)]
pub struct newtColors {
Show 44 fields pub rootFg: *mut c_char, pub rootBg: *mut c_char, pub borderFg: *mut c_char, pub borderBg: *mut c_char, pub windowFg: *mut c_char, pub windowBg: *mut c_char, pub shadowFg: *mut c_char, pub shadowBg: *mut c_char, pub titleFg: *mut c_char, pub titleBg: *mut c_char, pub buttonFg: *mut c_char, pub buttonBg: *mut c_char, pub actButtonFg: *mut c_char, pub actButtonBg: *mut c_char, pub checkboxFg: *mut c_char, pub checkboxBg: *mut c_char, pub actCheckboxFg: *mut c_char, pub actCheckboxBg: *mut c_char, pub entryFg: *mut c_char, pub entryBg: *mut c_char, pub labelFg: *mut c_char, pub labelBg: *mut c_char, pub listboxFg: *mut c_char, pub listboxBg: *mut c_char, pub actListboxFg: *mut c_char, pub actListboxBg: *mut c_char, pub textboxFg: *mut c_char, pub textboxBg: *mut c_char, pub actTextboxFg: *mut c_char, pub actTextboxBg: *mut c_char, pub helpLineFg: *mut c_char, pub helpLineBg: *mut c_char, pub rootTextFg: *mut c_char, pub rootTextBg: *mut c_char, pub emptyScale: *mut c_char, pub fullScale: *mut c_char, pub disabledEntryFg: *mut c_char, pub disabledEntryBg: *mut c_char, pub compactButtonFg: *mut c_char, pub compactButtonBg: *mut c_char, pub actSelListboxFg: *mut c_char, pub actSelListboxBg: *mut c_char, pub selListboxFg: *mut c_char, pub selListboxBg: *mut c_char,
}

Fields§

§rootFg: *mut c_char§rootBg: *mut c_char§borderFg: *mut c_char§borderBg: *mut c_char§windowFg: *mut c_char§windowBg: *mut c_char§shadowFg: *mut c_char§shadowBg: *mut c_char§titleFg: *mut c_char§titleBg: *mut c_char§buttonFg: *mut c_char§buttonBg: *mut c_char§actButtonFg: *mut c_char§actButtonBg: *mut c_char§checkboxFg: *mut c_char§checkboxBg: *mut c_char§actCheckboxFg: *mut c_char§actCheckboxBg: *mut c_char§entryFg: *mut c_char§entryBg: *mut c_char§labelFg: *mut c_char§labelBg: *mut c_char§listboxFg: *mut c_char§listboxBg: *mut c_char§actListboxFg: *mut c_char§actListboxBg: *mut c_char§textboxFg: *mut c_char§textboxBg: *mut c_char§actTextboxFg: *mut c_char§actTextboxBg: *mut c_char§helpLineFg: *mut c_char§helpLineBg: *mut c_char§rootTextFg: *mut c_char§rootTextBg: *mut c_char§emptyScale: *mut c_char§fullScale: *mut c_char§disabledEntryFg: *mut c_char§disabledEntryBg: *mut c_char§compactButtonFg: *mut c_char§compactButtonBg: *mut c_char§actSelListboxFg: *mut c_char§actSelListboxBg: *mut c_char§selListboxFg: *mut c_char§selListboxBg: *mut c_char

Trait Implementations§

Source§

impl Clone for newtColors

Source§

fn clone(&self) -> newtColors

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 newtColors

Source§

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

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

impl Copy for newtColors

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.