Trait ux::prelude::BufferedOutputStreamExt[]

pub trait BufferedOutputStreamExt: 'static {
    pub fn get_auto_grow(&self) -> bool;
pub fn get_buffer_size(&self) -> usize;
pub fn set_auto_grow(&self, auto_grow: bool);
pub fn set_buffer_size(&self, size: usize);
pub fn connect_property_auto_grow_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_buffer_size_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
; }

Required methods

pub fn get_auto_grow(&self) -> bool

pub fn get_buffer_size(&self) -> usize

pub fn set_auto_grow(&self, auto_grow: bool)

pub fn set_buffer_size(&self, size: usize)

pub fn connect_property_auto_grow_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 

pub fn connect_property_buffer_size_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 

Loading content...

Implementors

impl<O> BufferedOutputStreamExt for O where
    O: IsA<BufferedOutputStream>, 

Loading content...