Struct gdk_x11_sys::xlib::XFontStruct
[−]#[repr(C)]pub struct XFontStruct {Show 16 fields
pub ext_data: *mut XExtData,
pub fid: u64,
pub direction: u32,
pub min_char_or_byte2: u32,
pub max_char_or_byte2: u32,
pub min_byte1: u32,
pub max_byte1: u32,
pub all_chars_exist: i32,
pub default_char: u32,
pub n_properties: i32,
pub properties: *mut XFontProp,
pub min_bounds: XCharStruct,
pub max_bounds: XCharStruct,
pub per_char: *mut XCharStruct,
pub ascent: i32,
pub descent: i32,
}
Fields
ext_data: *mut XExtData
fid: u64
direction: u32
min_char_or_byte2: u32
max_char_or_byte2: u32
min_byte1: u32
max_byte1: u32
all_chars_exist: i32
default_char: u32
n_properties: i32
properties: *mut XFontProp
min_bounds: XCharStruct
max_bounds: XCharStruct
per_char: *mut XCharStruct
ascent: i32
descent: i32
Trait Implementations
impl Clone for XFontStruct
impl Clone for XFontStruct
fn clone(&self) -> XFontStruct
fn clone(&self) -> XFontStruct
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for XFontStruct
impl Debug for XFontStruct
impl PartialEq<XFontStruct> for XFontStruct
impl PartialEq<XFontStruct> for XFontStruct
fn eq(&self, other: &XFontStruct) -> bool
fn eq(&self, other: &XFontStruct) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &XFontStruct) -> bool
fn ne(&self, other: &XFontStruct) -> bool
This method tests for !=
.
impl Copy for XFontStruct
impl StructuralPartialEq for XFontStruct
Auto Trait Implementations
impl RefUnwindSafe for XFontStruct
impl !Send for XFontStruct
impl !Sync for XFontStruct
impl Unpin for XFontStruct
impl UnwindSafe for XFontStruct
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more