[][src]Struct windows_media_transcoding_bindings::windows::storage::IStorageFolder

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

Implementations

impl IStorageFolder[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Trait Implementations

impl AbiTransferable for IStorageFolder[src]

type Abi = RawComPtr<Self>

impl Clone for IStorageFolder[src]

impl ComInterface for IStorageFolder[src]

type VTable = abi_IStorageFolder

impl Debug for IStorageFolder[src]

impl Default for IStorageFolder[src]

impl<'_> From<&'_ IStorageFolder> for IStorageItem[src]

impl<'_> From<&'_ IStorageFolder> for Object[src]

impl<'_> From<&'_ StorageFolder> for IStorageFolder[src]

impl From<IStorageFolder> for IStorageItem[src]

impl From<IStorageFolder> for Object[src]

impl From<StorageFolder> for IStorageFolder[src]

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

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

impl PartialEq<IStorageFolder> for IStorageFolder[src]

impl RuntimeType for IStorageFolder[src]

Auto Trait Implementations

impl RefUnwindSafe for IStorageFolder

impl !Send for IStorageFolder

impl !Sync for IStorageFolder

impl Unpin for IStorageFolder

impl UnwindSafe for IStorageFolder

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.