#[repr(C)]pub struct FT_StreamRec {
pub base: *const c_uchar,
pub size: c_ulong,
pub pos: c_ulong,
pub descriptor: FT_StreamDesc,
pub pathname: FT_StreamDesc,
pub read: unsafe extern "C" fn(_: FT_Stream, _: c_ulong, _: *mut c_uchar, _: c_ulong) -> c_ulong,
pub close: unsafe extern "C" fn(_: FT_Stream),
pub memory: FT_Memory,
pub cursor: *mut c_uchar,
pub limit: *mut c_uchar,
}
Fields§
§base: *const c_uchar
§size: c_ulong
§pos: c_ulong
§descriptor: FT_StreamDesc
§pathname: FT_StreamDesc
§read: unsafe extern "C" fn(_: FT_Stream, _: c_ulong, _: *mut c_uchar, _: c_ulong) -> c_ulong
§close: unsafe extern "C" fn(_: FT_Stream)
§memory: FT_Memory
§cursor: *mut c_uchar
§limit: *mut c_uchar
Auto Trait Implementations§
impl Freeze for FT_StreamRec
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more