Tk_FakeWin

Struct Tk_FakeWin 

Source
#[repr(C)]
pub struct Tk_FakeWin {
Show 42 fields pub display: *mut Display, pub dummy1: *mut c_char, pub screenNum: c_int, pub visual: *mut Visual, pub depth: c_int, pub window: Window, pub dummy2: *mut c_char, pub dummy3: *mut c_char, pub parentPtr: Tk_Window, pub dummy4: *mut c_char, pub dummy5: *mut c_char, pub pathName: *mut c_char, pub nameUid: Tk_Uid, pub classUid: Tk_Uid, pub changes: XWindowChanges, pub dummy6: c_uint, pub atts: XSetWindowAttributes, pub dummy7: c_ulong, pub flags: c_uint, pub dummy8: *mut c_char, pub dummy9: XIC, pub dummy10: *mut ClientData, pub dummy11: c_int, pub dummy12: c_int, pub dummy13: *mut c_char, pub dummy14: *mut c_char, pub dummy15: ClientData, pub reqWidth: c_int, pub reqHeight: c_int, pub internalBorderLeft: c_int, pub dummy16: *mut c_char, pub dummy17: *mut c_char, pub dummy18: ClientData, pub dummy19: *mut c_char, pub internalBorderRight: c_int, pub internalBorderTop: c_int, pub internalBorderBottom: c_int, pub minReqWidth: c_int, pub minReqHeight: c_int, pub dummy20: c_int, pub dummy21: *mut c_char, pub dummy22: Tk_Window,
}

Fields§

§display: *mut Display§dummy1: *mut c_char§screenNum: c_int§visual: *mut Visual§depth: c_int§window: Window§dummy2: *mut c_char§dummy3: *mut c_char§parentPtr: Tk_Window§dummy4: *mut c_char§dummy5: *mut c_char§pathName: *mut c_char§nameUid: Tk_Uid§classUid: Tk_Uid§changes: XWindowChanges§dummy6: c_uint§atts: XSetWindowAttributes§dummy7: c_ulong§flags: c_uint§dummy8: *mut c_char§dummy9: XIC§dummy10: *mut ClientData§dummy11: c_int§dummy12: c_int§dummy13: *mut c_char§dummy14: *mut c_char§dummy15: ClientData§reqWidth: c_int§reqHeight: c_int§internalBorderLeft: c_int§dummy16: *mut c_char§dummy17: *mut c_char§dummy18: ClientData§dummy19: *mut c_char§internalBorderRight: c_int§internalBorderTop: c_int§internalBorderBottom: c_int§minReqWidth: c_int§minReqHeight: c_int§dummy20: c_int§dummy21: *mut c_char§dummy22: Tk_Window

Trait Implementations§

Source§

impl Clone for Tk_FakeWin

Source§

fn clone(&self) -> Tk_FakeWin

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 Tk_FakeWin

Source§

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

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

impl Copy for Tk_FakeWin

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.