[][src]Struct lc3tools_sys::root::std::basic_filebuf

#[repr(C)]pub struct basic_filebuf<_CharT> {
    pub _base: basic_streambuf<_CharT>,
    pub _M_lock: __c_lock,
    pub _M_file: basic_filebuf___file_type,
    pub _M_mode: ios_base_openmode,
    pub _M_state_beg: basic_filebuf___state_type,
    pub _M_state_cur: basic_filebuf___state_type,
    pub _M_state_last: basic_filebuf___state_type,
    pub _M_buf: *mut basic_filebuf_char_type<_CharT>,
    pub _M_buf_size: size_t,
    pub _M_buf_allocated: bool,
    pub _M_reading: bool,
    pub _M_writing: bool,
    pub _M_pback: basic_filebuf_char_type<_CharT>,
    pub _M_pback_cur_save: *mut basic_filebuf_char_type<_CharT>,
    pub _M_pback_end_save: *mut basic_filebuf_char_type<_CharT>,
    pub _M_pback_init: bool,
    pub _M_codecvt: *const basic_filebuf___codecvt_type,
    pub _M_ext_buf: *mut c_char,
    pub _M_ext_buf_size: streamsize,
    pub _M_ext_next: *const c_char,
    pub _M_ext_end: *mut c_char,
    pub _phantom_0: PhantomData<UnsafeCell<_CharT>>,
}

Fields

_base: basic_streambuf<_CharT>_M_lock: __c_lock_M_file: basic_filebuf___file_type_M_mode: ios_base_openmode_M_state_beg: basic_filebuf___state_type_M_state_cur: basic_filebuf___state_type_M_state_last: basic_filebuf___state_type_M_buf: *mut basic_filebuf_char_type<_CharT>_M_buf_size: size_t_M_buf_allocated: bool_M_reading: bool_M_writing: bool_M_pback: basic_filebuf_char_type<_CharT>_M_pback_cur_save: *mut basic_filebuf_char_type<_CharT>_M_pback_end_save: *mut basic_filebuf_char_type<_CharT>_M_pback_init: bool_M_codecvt: *const basic_filebuf___codecvt_type_M_ext_buf: *mut c_char_M_ext_buf_size: streamsize_M_ext_next: *const c_char_M_ext_end: *mut c_char_phantom_0: PhantomData<UnsafeCell<_CharT>>

Trait Implementations

impl<_CharT> Default for basic_filebuf<_CharT>[src]

Auto Trait Implementations

impl<_CharT> !RefUnwindSafe for basic_filebuf<_CharT>

impl<_CharT> !Send for basic_filebuf<_CharT>

impl<_CharT> !Sync for basic_filebuf<_CharT>

impl<_CharT> Unpin for basic_filebuf<_CharT> where
    _CharT: Unpin

impl<_CharT> UnwindSafe for basic_filebuf<_CharT> where
    _CharT: RefUnwindSafe + UnwindSafe

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.