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

#[repr(C)]pub struct ios_base {
    pub vtable_: *const ios_base__bindgen_vtable,
    pub _M_precision: streamsize,
    pub _M_width: streamsize,
    pub _M_flags: ios_base_fmtflags,
    pub _M_exception: ios_base_iostate,
    pub _M_streambuf_state: ios_base_iostate,
    pub _M_callbacks: *mut ios_base__Callback_list,
    pub _M_word_zero: ios_base__Words,
    pub _M_local_word: [ios_base__Words; 8],
    pub _M_word_size: c_int,
    pub _M_word: *mut ios_base__Words,
    pub _M_ios_locale: locale,
}

Fields

vtable_: *const ios_base__bindgen_vtable_M_precision: streamsize_M_width: streamsize_M_flags: ios_base_fmtflags_M_exception: ios_base_iostate_M_streambuf_state: ios_base_iostate_M_callbacks: *mut ios_base__Callback_list_M_word_zero: ios_base__Words_M_local_word: [ios_base__Words; 8]_M_word_size: c_int_M_word: *mut ios_base__Words_M_ios_locale: locale

Implementations

impl ios_base[src]

pub unsafe fn register_callback(
    &mut self,
    __fn: ios_base_event_callback,
    __index: c_int
)
[src]

pub unsafe fn _M_call_callbacks(&mut self, __ev: ios_base_event)[src]

pub unsafe fn _M_dispose_callbacks(&mut self)[src]

pub unsafe fn _M_grow_words(
    &mut self,
    __index: c_int,
    __iword: bool
) -> *mut ios_base__Words
[src]

pub unsafe fn _M_init(&mut self)[src]

pub unsafe fn sync_with_stdio(__sync: bool) -> bool[src]

pub unsafe fn imbue(&mut self, __loc: *const locale) -> locale[src]

pub unsafe fn xalloc() -> c_int[src]

pub unsafe fn _M_move(&mut self, arg1: *mut ios_base)[src]

pub unsafe fn _M_swap(&mut self, __rhs: *mut ios_base)[src]

pub unsafe fn new() -> Self[src]

Trait Implementations

impl Debug for ios_base[src]

impl Default for ios_base[src]

Auto Trait Implementations

impl RefUnwindSafe for ios_base

impl !Send for ios_base

impl !Sync for ios_base

impl Unpin for ios_base

impl UnwindSafe for ios_base

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.