Struct freetype_sys::FT_StreamRec[][src]

#[repr(C)]pub struct FT_StreamRec {
    pub base: *mut c_uchar,
    pub size: c_ulong,
    pub pos: c_ulong,
    pub descriptor: FT_StreamDesc,
    pub pathname: FT_StreamDesc,
    pub read: FT_Stream_IoFunc,
    pub close: FT_Stream_CloseFunc,
    pub memory: FT_Memory,
    pub cursor: *mut c_uchar,
    pub limit: *mut c_uchar,
}

Fields

base: *mut c_ucharsize: c_ulongpos: c_ulongdescriptor: FT_StreamDescpathname: FT_StreamDescread: FT_Stream_IoFuncclose: FT_Stream_CloseFuncmemory: FT_Memorycursor: *mut c_ucharlimit: *mut c_uchar

Trait Implementations

impl Debug for FT_StreamRec[src]

impl Eq for FT_StreamRec[src]

impl Hash for FT_StreamRec[src]

impl PartialEq<FT_StreamRec> for FT_StreamRec[src]

impl StructuralEq for FT_StreamRec[src]

impl StructuralPartialEq for FT_StreamRec[src]

Auto Trait Implementations

impl RefUnwindSafe for FT_StreamRec

impl !Send for FT_StreamRec

impl !Sync for FT_StreamRec

impl Unpin for FT_StreamRec

impl UnwindSafe for FT_StreamRec

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.