[][src]Struct libR_sys::R_inpstream_st

#[repr(C)]pub struct R_inpstream_st {
    pub data: R_pstream_data_t,
    pub type_: R_pstream_format_t,
    pub InChar: Option<unsafe extern "C" fn(arg1: R_inpstream_t) -> c_int>,
    pub InBytes: Option<unsafe extern "C" fn(arg1: R_inpstream_t, arg2: *mut c_void, arg3: c_int)>,
    pub InPersistHookFunc: Option<unsafe extern "C" fn(arg1: SEXP, arg2: SEXP) -> SEXP>,
    pub InPersistHookData: SEXP,
    pub native_encoding: [c_char; 64],
    pub nat2nat_obj: *mut c_void,
    pub nat2utf8_obj: *mut c_void,
}

Fields

data: R_pstream_data_ttype_: R_pstream_format_tInChar: Option<unsafe extern "C" fn(arg1: R_inpstream_t) -> c_int>InBytes: Option<unsafe extern "C" fn(arg1: R_inpstream_t, arg2: *mut c_void, arg3: c_int)>InPersistHookFunc: Option<unsafe extern "C" fn(arg1: SEXP, arg2: SEXP) -> SEXP>InPersistHookData: SEXPnative_encoding: [c_char; 64]nat2nat_obj: *mut c_voidnat2utf8_obj: *mut c_void

Trait Implementations

impl Clone for R_inpstream_st[src]

impl Copy for R_inpstream_st[src]

Auto Trait Implementations

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.