pub trait IStorageFolder2_Impl: Sized {
    // Required method
    fn TryGetItemAsync(
        &self,
        name: &HSTRING
    ) -> Result<IAsyncOperation<IStorageItem>>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§