Struct freetype_sys::FT_StreamRec
source · [−]#[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_uchar
size: c_ulong
pos: c_ulong
descriptor: FT_StreamDesc
pathname: FT_StreamDesc
read: FT_Stream_IoFunc
close: FT_Stream_CloseFunc
memory: FT_Memory
cursor: *mut c_uchar
limit: *mut c_uchar
Trait Implementations
sourceimpl Debug for FT_StreamRec
impl Debug for FT_StreamRec
sourceimpl Hash for FT_StreamRec
impl Hash for FT_StreamRec
sourceimpl PartialEq<FT_StreamRec> for FT_StreamRec
impl PartialEq<FT_StreamRec> for FT_StreamRec
sourcefn eq(&self, other: &FT_StreamRec) -> bool
fn eq(&self, other: &FT_StreamRec) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FT_StreamRec) -> bool
fn ne(&self, other: &FT_StreamRec) -> bool
This method tests for !=
.
impl Eq for FT_StreamRec
impl StructuralEq for FT_StreamRec
impl StructuralPartialEq for FT_StreamRec
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
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