Trait sourceview5::prelude::ContentProviderExt

source ·
pub trait ContentProviderExt: IsA<ContentProvider> + Sealed + 'static {
    // Provided methods
    fn content_changed(&self) { ... }
    fn formats(&self) -> ContentFormats { ... }
    fn storable_formats(&self) -> ContentFormats { ... }
    fn write_mime_type_async<P>(
        &self,
        mime_type: &str,
        stream: &impl IsA<OutputStream>,
        io_priority: Priority,
        cancellable: Option<&impl IsA<Cancellable>>,
        callback: P,
    )
       where P: FnOnce(Result<(), Error>) + 'static { ... }
    fn write_mime_type_future(
        &self,
        mime_type: &str,
        stream: &(impl IsA<OutputStream> + Clone + 'static),
        io_priority: Priority,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... }
    fn connect_content_changed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_formats_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_storable_formats_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn content_changed(&self)

source

fn formats(&self) -> ContentFormats

source

fn storable_formats(&self) -> ContentFormats

source

fn write_mime_type_async<P>( &self, mime_type: &str, stream: &impl IsA<OutputStream>, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
where P: FnOnce(Result<(), Error>) + 'static,

source

fn write_mime_type_future( &self, mime_type: &str, stream: &(impl IsA<OutputStream> + Clone + 'static), io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§