Trait gio::prelude::MemoryOutputStreamExt[][src]

pub trait MemoryOutputStreamExt: 'static {
    fn data_size(&self) -> usize;
fn steal_as_bytes(&self) -> Bytes;
fn connect_data_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all MemoryOutputStream methods.

Implementors

MemoryOutputStream

Required methods

Returns the number of bytes from the start up to including the last byte written in the stream that has not been truncated away.

Returns

the number of bytes written to the stream

Returns data from the self as a glib::Bytes. self must be closed before calling this function.

Returns

the stream’s data

Implementors