Trait gio::FileInputStreamExt [−][src]
pub trait FileInputStreamExt {
fn query_info<'a, P: Into<Option<&'a Cancellable>>>(
&self,
attributes: &str,
cancellable: P
) -> Result<FileInfo, Error>;
fn query_info_async<'a, P: Into<Option<&'a Cancellable>>, Q: FnOnce(Result<FileInfo, Error>) + Send + 'static>(
&self,
attributes: &str,
io_priority: Priority,
cancellable: P,
callback: Q
);
}Required Methods
fn query_info<'a, P: Into<Option<&'a Cancellable>>>(
&self,
attributes: &str,
cancellable: P
) -> Result<FileInfo, Error>
&self,
attributes: &str,
cancellable: P
) -> Result<FileInfo, Error>
fn query_info_async<'a, P: Into<Option<&'a Cancellable>>, Q: FnOnce(Result<FileInfo, Error>) + Send + 'static>(
&self,
attributes: &str,
io_priority: Priority,
cancellable: P,
callback: Q
)
&self,
attributes: &str,
io_priority: Priority,
cancellable: P,
callback: Q
)
Implementors
impl<O: IsA<FileInputStream>> FileInputStreamExt for O