[][src]Struct leptess::capi::_IO_FILE

#[repr(C)]pub struct _IO_FILE {
    pub _flags: i32,
    pub _IO_read_ptr: *mut i8,
    pub _IO_read_end: *mut i8,
    pub _IO_read_base: *mut i8,
    pub _IO_write_base: *mut i8,
    pub _IO_write_ptr: *mut i8,
    pub _IO_write_end: *mut i8,
    pub _IO_buf_base: *mut i8,
    pub _IO_buf_end: *mut i8,
    pub _IO_save_base: *mut i8,
    pub _IO_backup_base: *mut i8,
    pub _IO_save_end: *mut i8,
    pub _markers: *mut _IO_marker,
    pub _chain: *mut _IO_FILE,
    pub _fileno: i32,
    pub _flags2: i32,
    pub _old_offset: i32,
    pub _cur_column: u16,
    pub _vtable_offset: i8,
    pub _shortbuf: [i8; 1],
    pub _lock: *mut c_void,
    pub _offset: i32,
    pub _codecvt: *mut _IO_codecvt,
    pub _wide_data: *mut _IO_wide_data,
    pub _freeres_list: *mut _IO_FILE,
    pub _freeres_buf: *mut c_void,
    pub __pad5: u64,
    pub _mode: i32,
    pub _unused2: [i8; 20],
}

Fields

_flags: i32_IO_read_ptr: *mut i8_IO_read_end: *mut i8_IO_read_base: *mut i8_IO_write_base: *mut i8_IO_write_ptr: *mut i8_IO_write_end: *mut i8_IO_buf_base: *mut i8_IO_buf_end: *mut i8_IO_save_base: *mut i8_IO_backup_base: *mut i8_IO_save_end: *mut i8_markers: *mut _IO_marker_chain: *mut _IO_FILE_fileno: i32_flags2: i32_old_offset: i32_cur_column: u16_vtable_offset: i8_shortbuf: [i8; 1]_lock: *mut c_void_offset: i32_codecvt: *mut _IO_codecvt_wide_data: *mut _IO_wide_data_freeres_list: *mut _IO_FILE_freeres_buf: *mut c_void__pad5: u64_mode: i32_unused2: [i8; 20]

Trait Implementations

impl Clone for _IO_FILE[src]

impl Copy for _IO_FILE[src]

impl Debug for _IO_FILE[src]

Auto Trait Implementations

impl RefUnwindSafe for _IO_FILE

impl !Send for _IO_FILE

impl !Sync for _IO_FILE

impl Unpin for _IO_FILE

impl UnwindSafe for _IO_FILE

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.