[][src]Struct freetype_sys::FT_Open_Args

#[repr(C)]pub struct FT_Open_Args {
    pub flags: FT_UInt,
    pub memory_base: *const FT_Byte,
    pub memory_size: FT_Long,
    pub pathname: *mut FT_String,
    pub stream: FT_Stream,
    pub driver: FT_Module,
    pub num_params: FT_Int,
    pub params: *mut FT_Parameter,
}

Fields

flags: FT_UIntmemory_base: *const FT_Bytememory_size: FT_Longpathname: *mut FT_Stringstream: FT_Streamdriver: FT_Modulenum_params: FT_Intparams: *mut FT_Parameter

Trait Implementations

impl Debug for FT_Open_Args[src]

impl Eq for FT_Open_Args[src]

impl Hash for FT_Open_Args[src]

impl PartialEq<FT_Open_Args> for FT_Open_Args[src]

impl StructuralEq for FT_Open_Args[src]

impl StructuralPartialEq for FT_Open_Args[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.