[][src]Struct libR_sys::R_outpstream_st

#[repr(C)]pub struct R_outpstream_st {
    pub data: R_pstream_data_t,
    pub type_: R_pstream_format_t,
    pub version: c_int,
    pub OutChar: Option<unsafe extern "C" fn(arg1: R_outpstream_t, arg2: c_int)>,
    pub OutBytes: Option<unsafe extern "C" fn(arg1: R_outpstream_t, arg2: *mut c_void, arg3: c_int)>,
    pub OutPersistHookFunc: Option<unsafe extern "C" fn(arg1: SEXP, arg2: SEXP) -> SEXP>,
    pub OutPersistHookData: SEXP,
}

Fields

data: R_pstream_data_ttype_: R_pstream_format_tversion: c_intOutChar: Option<unsafe extern "C" fn(arg1: R_outpstream_t, arg2: c_int)>OutBytes: Option<unsafe extern "C" fn(arg1: R_outpstream_t, arg2: *mut c_void, arg3: c_int)>OutPersistHookFunc: Option<unsafe extern "C" fn(arg1: SEXP, arg2: SEXP) -> SEXP>OutPersistHookData: SEXP

Trait Implementations

impl Clone for R_outpstream_st[src]

impl Copy for R_outpstream_st[src]

impl Debug for R_outpstream_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.