Trait gio::DataOutputStreamExt[][src]

pub trait DataOutputStreamExt {
    fn get_byte_order(&self) -> DataStreamByteOrder;
fn put_byte<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: u8,
        cancellable: P
    ) -> Result<(), Error>;
fn put_int16<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: i16,
        cancellable: P
    ) -> Result<(), Error>;
fn put_int32<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: i32,
        cancellable: P
    ) -> Result<(), Error>;
fn put_int64<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: i64,
        cancellable: P
    ) -> Result<(), Error>;
fn put_string<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        str: &str,
        cancellable: P
    ) -> Result<(), Error>;
fn put_uint16<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: u16,
        cancellable: P
    ) -> Result<(), Error>;
fn put_uint32<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: u32,
        cancellable: P
    ) -> Result<(), Error>;
fn put_uint64<'a, P: Into<Option<&'a Cancellable>>>(
        &self,
        data: u64,
        cancellable: P
    ) -> Result<(), Error>;
fn set_byte_order(&self, order: DataStreamByteOrder);
fn connect_property_byte_order_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors