pub trait IUriToStreamResolver_Impl: Sized {
    // Required method
    fn UriToStreamAsync(
        &self,
        uri: Option<&Uri>
    ) -> Result<IAsyncOperation<IInputStream>>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§