Trait sourceview5::prelude::FileInputStreamExt

source ·
pub trait FileInputStreamExt: IsA<FileInputStream> + Sealed + 'static {
    // Provided methods
    fn query_info(
        &self,
        attributes: &str,
        cancellable: Option<&impl IsA<Cancellable>>,
    ) -> Result<FileInfo, Error> { ... }
    fn query_info_async<P>(
        &self,
        attributes: &str,
        io_priority: Priority,
        cancellable: Option<&impl IsA<Cancellable>>,
        callback: P,
    )
       where P: FnOnce(Result<FileInfo, Error>) + 'static { ... }
    fn query_info_future(
        &self,
        attributes: &str,
        io_priority: Priority,
    ) -> Pin<Box<dyn Future<Output = Result<FileInfo, Error>>>> { ... }
}

Provided Methods§

source

fn query_info( &self, attributes: &str, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<FileInfo, Error>

source

fn query_info_async<P>( &self, attributes: &str, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
where P: FnOnce(Result<FileInfo, Error>) + 'static,

source

fn query_info_future( &self, attributes: &str, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<FileInfo, Error>>>>

Object Safety§

This trait is not object safe.

Implementors§