[][src]Struct imgui_sys::ImFontConfig

#[repr(C)]
pub struct ImFontConfig {
    pub FontData: *mut c_void,
    pub FontDataSize: c_int,
    pub FontDataOwnedByAtlas: bool,
    pub FontNo: c_int,
    pub SizePixels: f32,
    pub OversampleH: c_int,
    pub OversampleV: c_int,
    pub PixelSnapH: bool,
    pub GlyphExtraSpacing: ImVec2,
    pub GlyphOffset: ImVec2,
    pub GlyphRanges: *const ImWchar,
    pub GlyphMinAdvanceX: f32,
    pub GlyphMaxAdvanceX: f32,
    pub MergeMode: bool,
    pub RasterizerFlags: c_uint,
    pub RasterizerMultiply: f32,
    pub Name: [c_char; 40],
    pub DstFont: *mut ImFont,
}

Fields

FontData: *mut c_voidFontDataSize: c_intFontDataOwnedByAtlas: boolFontNo: c_intSizePixels: f32OversampleH: c_intOversampleV: c_intPixelSnapH: boolGlyphExtraSpacing: ImVec2GlyphOffset: ImVec2GlyphRanges: *const ImWcharGlyphMinAdvanceX: f32GlyphMaxAdvanceX: f32MergeMode: boolRasterizerFlags: c_uintRasterizerMultiply: f32Name: [c_char; 40]DstFont: *mut ImFont

Trait Implementations

impl Copy for ImFontConfig[src]

impl Default for ImFontConfig[src]

impl Clone for ImFontConfig[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ImFontConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]