[][src]Struct uwp_transcode::file::StorageFolder

#[repr(transparent)]pub struct StorageFolder { /* fields omitted */ }

Implementations

impl StorageFolder[src]

pub fn rename_async_overload_default_options<'a, T0__>(
    &self,
    desired_name: T0__
) -> Result<IAsyncAction, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn rename_async<'a, T0__>(
    &self,
    desired_name: T0__,
    option: NameCollisionOption
) -> Result<IAsyncAction, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn delete_async_overload_default_options(
    &self
) -> Result<IAsyncAction, Error>
[src]

pub fn delete_async(
    &self,
    option: StorageDeleteOption
) -> Result<IAsyncAction, Error>
[src]

pub fn get_basic_properties_async(
    &self
) -> Result<IAsyncOperation<BasicProperties>, Error>
[src]

pub fn name(&self) -> Result<HString, Error>[src]

pub fn path(&self) -> Result<HString, Error>[src]

pub fn attributes(&self) -> Result<FileAttributes, Error>[src]

pub fn date_created(&self) -> Result<DateTime, Error>[src]

pub fn is_of_type(&self, r#type: StorageItemTypes) -> Result<bool, Error>[src]

pub fn create_file_async_overload_default_options<'a, T0__>(
    &self,
    desired_name: T0__
) -> Result<IAsyncOperation<StorageFile>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn create_file_async<'a, T0__>(
    &self,
    desired_name: T0__,
    options: CreationCollisionOption
) -> Result<IAsyncOperation<StorageFile>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn create_folder_async_overload_default_options<'a, T0__>(
    &self,
    desired_name: T0__
) -> Result<IAsyncOperation<StorageFolder>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn create_folder_async<'a, T0__>(
    &self,
    desired_name: T0__,
    options: CreationCollisionOption
) -> Result<IAsyncOperation<StorageFolder>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn get_file_async<'a, T0__>(
    &self,
    name: T0__
) -> Result<IAsyncOperation<StorageFile>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn get_folder_async<'a, T0__>(
    &self,
    name: T0__
) -> Result<IAsyncOperation<StorageFolder>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn get_item_async<'a, T0__>(
    &self,
    name: T0__
) -> Result<IAsyncOperation<IStorageItem>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn get_files_async_overload_default_options_start_and_count(
    &self
) -> Result<IAsyncOperation<IVectorView<StorageFile>>, Error>
[src]

pub fn get_folders_async_overload_default_options_start_and_count(
    &self
) -> Result<IAsyncOperation<IVectorView<StorageFolder>>, Error>
[src]

pub fn get_items_async_overload_default_start_and_count(
    &self
) -> Result<IAsyncOperation<IVectorView<IStorageItem>>, Error>
[src]

pub fn get_indexed_state_async(
    &self
) -> Result<IAsyncOperation<IndexedState>, Error>
[src]

pub fn create_file_query_overload_default(
    &self
) -> Result<StorageFileQueryResult, Error>
[src]

pub fn create_file_query(
    &self,
    query: CommonFileQuery
) -> Result<StorageFileQueryResult, Error>
[src]

pub fn create_file_query_with_options<'a, T0__>(
    &self,
    query_options: T0__
) -> Result<StorageFileQueryResult, Error> where
    T0__: Into<Param<'a, QueryOptions>>, 
[src]

pub fn create_folder_query_overload_default(
    &self
) -> Result<StorageFolderQueryResult, Error>
[src]

pub fn create_folder_query(
    &self,
    query: CommonFolderQuery
) -> Result<StorageFolderQueryResult, Error>
[src]

pub fn create_folder_query_with_options<'a, T0__>(
    &self,
    query_options: T0__
) -> Result<StorageFolderQueryResult, Error> where
    T0__: Into<Param<'a, QueryOptions>>, 
[src]

pub fn create_item_query(&self) -> Result<StorageItemQueryResult, Error>[src]

pub fn create_item_query_with_options<'a, T0__>(
    &self,
    query_options: T0__
) -> Result<StorageItemQueryResult, Error> where
    T0__: Into<Param<'a, QueryOptions>>, 
[src]

pub fn get_files_async(
    &self,
    query: CommonFileQuery,
    start_index: u32,
    max_items_to_retrieve: u32
) -> Result<IAsyncOperation<IVectorView<StorageFile>>, Error>
[src]

pub fn get_files_async_overload_default_start_and_count(
    &self,
    query: CommonFileQuery
) -> Result<IAsyncOperation<IVectorView<StorageFile>>, Error>
[src]

pub fn get_folders_async(
    &self,
    query: CommonFolderQuery,
    start_index: u32,
    max_items_to_retrieve: u32
) -> Result<IAsyncOperation<IVectorView<StorageFolder>>, Error>
[src]

pub fn get_folders_async_overload_default_start_and_count(
    &self,
    query: CommonFolderQuery
) -> Result<IAsyncOperation<IVectorView<StorageFolder>>, Error>
[src]

pub fn get_items_async(
    &self,
    start_index: u32,
    max_items_to_retrieve: u32
) -> Result<IAsyncOperation<IVectorView<IStorageItem>>, Error>
[src]

pub fn are_query_options_supported<'a, T0__>(
    &self,
    query_options: T0__
) -> Result<bool, Error> where
    T0__: Into<Param<'a, QueryOptions>>, 
[src]

pub fn is_common_folder_query_supported(
    &self,
    query: CommonFolderQuery
) -> Result<bool, Error>
[src]

pub fn is_common_file_query_supported(
    &self,
    query: CommonFileQuery
) -> Result<bool, Error>
[src]

pub fn get_thumbnail_async_overload_default_size_default_options(
    &self,
    mode: ThumbnailMode
) -> Result<IAsyncOperation<StorageItemThumbnail>, Error>
[src]

pub fn get_thumbnail_async_overload_default_options(
    &self,
    mode: ThumbnailMode,
    requested_size: u32
) -> Result<IAsyncOperation<StorageItemThumbnail>, Error>
[src]

pub fn get_thumbnail_async(
    &self,
    mode: ThumbnailMode,
    requested_size: u32,
    options: ThumbnailOptions
) -> Result<IAsyncOperation<StorageItemThumbnail>, Error>
[src]

pub fn display_name(&self) -> Result<HString, Error>[src]

pub fn display_type(&self) -> Result<HString, Error>[src]

pub fn folder_relative_id(&self) -> Result<HString, Error>[src]

pub fn properties(&self) -> Result<StorageItemContentProperties, Error>[src]

pub fn get_scaled_image_as_thumbnail_async_overload_default_size_default_options(
    &self,
    mode: ThumbnailMode
) -> Result<IAsyncOperation<StorageItemThumbnail>, Error>
[src]

pub fn get_scaled_image_as_thumbnail_async_overload_default_options(
    &self,
    mode: ThumbnailMode,
    requested_size: u32
) -> Result<IAsyncOperation<StorageItemThumbnail>, Error>
[src]

pub fn get_scaled_image_as_thumbnail_async(
    &self,
    mode: ThumbnailMode,
    requested_size: u32,
    options: ThumbnailOptions
) -> Result<IAsyncOperation<StorageItemThumbnail>, Error>
[src]

pub fn get_parent_async(&self) -> Result<IAsyncOperation<StorageFolder>, Error>[src]

pub fn is_equal<'a, T0__>(&self, item: T0__) -> Result<bool, Error> where
    T0__: Into<Param<'a, IStorageItem>>, 
[src]

pub fn try_get_item_async<'a, T0__>(
    &self,
    name: T0__
) -> Result<IAsyncOperation<IStorageItem>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

pub fn provider(&self) -> Result<StorageProvider, Error>[src]

pub fn try_get_change_tracker(
    &self
) -> Result<StorageLibraryChangeTracker, Error>
[src]

pub fn get_folder_from_path_for_user_async<'a, T0__, T1__>(
    user: T0__,
    path: T1__
) -> Result<IAsyncOperation<StorageFolder>, Error> where
    T0__: Into<Param<'a, User>>,
    T1__: Into<Param<'a, HString>>, 
[src]

pub fn get_folder_from_path_async<'a, T0__>(
    path: T0__
) -> Result<IAsyncOperation<StorageFolder>, Error> where
    T0__: Into<Param<'a, HString>>, 
[src]

Trait Implementations

impl AbiTransferable for StorageFolder[src]

type Abi = Option<NonNullRawComPtr<IStorageFolder>>

impl Clone for StorageFolder[src]

impl ComInterface for StorageFolder[src]

type VTable = abi_IStorageFolder

impl Debug for StorageFolder[src]

impl Default for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolder>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolder>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolder2>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolder2>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolder3>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolder3>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolderQueryOperations>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageFolderQueryOperations>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItem>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItem>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItem2>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItem2>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItemProperties>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItemProperties>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItemProperties2>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItemProperties2>> for StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItemPropertiesWithProvider>> for &'a StorageFolder[src]

impl<'a> Into<Param<'a, IStorageItemPropertiesWithProvider>> for StorageFolder[src]

impl PartialEq<StorageFolder> for StorageFolder[src]

impl RuntimeName for StorageFolder[src]

impl RuntimeType for StorageFolder[src]

impl StructuralPartialEq for StorageFolder[src]

Auto Trait Implementations

impl RefUnwindSafe for StorageFolder

impl !Send for StorageFolder

impl !Sync for StorageFolder

impl Unpin for StorageFolder

impl UnwindSafe for StorageFolder

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.