[][src]Struct glib_sys::GIOFuncs

#[repr(C)]
pub struct GIOFuncs { pub io_read: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: *const c_char, _: size_t, _: *mut size_t, _: *mut *mut GError) -> GIOStatus>, pub io_write: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: *const c_char, _: size_t, _: *mut size_t, _: *mut *mut GError) -> GIOStatus>, pub io_seek: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: i64, _: GSeekType, _: *mut *mut GError) -> GIOStatus>, pub io_close: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: *mut *mut GError) -> GIOStatus>, pub io_create_watch: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: GIOCondition) -> *mut GSource>, pub io_free: Option<unsafe extern "C" fn(_: *mut GIOChannel)>, pub io_set_flags: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: GIOFlags, _: *mut *mut GError) -> GIOStatus>, pub io_get_flags: Option<unsafe extern "C" fn(_: *mut GIOChannel) -> GIOFlags>, }

Fields

io_read: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: *const c_char, _: size_t, _: *mut size_t, _: *mut *mut GError) -> GIOStatus>io_write: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: *const c_char, _: size_t, _: *mut size_t, _: *mut *mut GError) -> GIOStatus>io_seek: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: i64, _: GSeekType, _: *mut *mut GError) -> GIOStatus>io_close: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: *mut *mut GError) -> GIOStatus>io_create_watch: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: GIOCondition) -> *mut GSource>io_free: Option<unsafe extern "C" fn(_: *mut GIOChannel)>io_set_flags: Option<unsafe extern "C" fn(_: *mut GIOChannel, _: GIOFlags, _: *mut *mut GError) -> GIOStatus>io_get_flags: Option<unsafe extern "C" fn(_: *mut GIOChannel) -> GIOFlags>

Trait Implementations

impl Clone for GIOFuncs[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for GIOFuncs[src]

impl Debug for GIOFuncs[src]

Auto Trait Implementations

impl Send for GIOFuncs

impl Sync for GIOFuncs

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.