Trait sourceview5::prelude::MediaFileExt

source ·
pub trait MediaFileExt: IsA<MediaFile> + Sealed + 'static {
    // Provided methods
    fn clear(&self) { ... }
    fn file(&self) -> Option<File> { ... }
    fn input_stream(&self) -> Option<InputStream> { ... }
    fn set_file(&self, file: Option<&impl IsA<File>>) { ... }
    fn set_filename(&self, filename: Option<impl AsRef<Path>>) { ... }
    fn set_input_stream(&self, stream: Option<&impl IsA<InputStream>>) { ... }
    fn set_resource(&self, resource_path: Option<&str>) { ... }
    fn connect_file_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_input_stream_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn clear(&self)

source

fn file(&self) -> Option<File>

source

fn input_stream(&self) -> Option<InputStream>

source

fn set_file(&self, file: Option<&impl IsA<File>>)

source

fn set_filename(&self, filename: Option<impl AsRef<Path>>)

source

fn set_input_stream(&self, stream: Option<&impl IsA<InputStream>>)

source

fn set_resource(&self, resource_path: Option<&str>)

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> MediaFileExt for O
where O: IsA<MediaFile>,