[−][src]Struct windows_media_transcoding_bindings::windows::storage::IStorageFolder
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]
&self,
desired_name: T0__
) -> Result<IAsyncOperation<StorageFile>>
pub fn create_file_async<'a, T0__: Into<Param<'a, HString>>>(
&self,
desired_name: T0__,
options: CreationCollisionOption
) -> Result<IAsyncOperation<StorageFile>>[src]
&self,
desired_name: T0__,
options: CreationCollisionOption
) -> Result<IAsyncOperation<StorageFile>>
pub fn create_folder_async_overload_default_options<'a, T0__: Into<Param<'a, HString>>>(
&self,
desired_name: T0__
) -> Result<IAsyncOperation<StorageFolder>>[src]
&self,
desired_name: T0__
) -> Result<IAsyncOperation<StorageFolder>>
pub fn create_folder_async<'a, T0__: Into<Param<'a, HString>>>(
&self,
desired_name: T0__,
options: CreationCollisionOption
) -> Result<IAsyncOperation<StorageFolder>>[src]
&self,
desired_name: T0__,
options: CreationCollisionOption
) -> Result<IAsyncOperation<StorageFolder>>
pub fn get_file_async<'a, T0__: Into<Param<'a, HString>>>(
&self,
name: T0__
) -> Result<IAsyncOperation<StorageFile>>[src]
&self,
name: T0__
) -> Result<IAsyncOperation<StorageFile>>
pub fn get_folder_async<'a, T0__: Into<Param<'a, HString>>>(
&self,
name: T0__
) -> Result<IAsyncOperation<StorageFolder>>[src]
&self,
name: T0__
) -> Result<IAsyncOperation<StorageFolder>>
pub fn get_item_async<'a, T0__: Into<Param<'a, HString>>>(
&self,
name: T0__
) -> Result<IAsyncOperation<IStorageItem>>[src]
&self,
name: T0__
) -> Result<IAsyncOperation<IStorageItem>>
pub fn get_files_async_overload_default_options_start_and_count(
&self
) -> Result<IAsyncOperation<IVectorView<StorageFile>>>[src]
&self
) -> Result<IAsyncOperation<IVectorView<StorageFile>>>
pub fn get_folders_async_overload_default_options_start_and_count(
&self
) -> Result<IAsyncOperation<IVectorView<StorageFolder>>>[src]
&self
) -> Result<IAsyncOperation<IVectorView<StorageFolder>>>
pub fn get_items_async_overload_default_start_and_count(
&self
) -> Result<IAsyncOperation<IVectorView<IStorageItem>>>[src]
&self
) -> Result<IAsyncOperation<IVectorView<IStorageItem>>>
pub fn rename_async_overload_default_options<'a, T0__: Into<Param<'a, HString>>>(
&self,
desired_name: T0__
) -> Result<IAsyncAction>[src]
&self,
desired_name: T0__
) -> Result<IAsyncAction>
pub fn rename_async<'a, T0__: Into<Param<'a, HString>>>(
&self,
desired_name: T0__,
option: NameCollisionOption
) -> Result<IAsyncAction>[src]
&self,
desired_name: T0__,
option: NameCollisionOption
) -> Result<IAsyncAction>
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]
&self
) -> Result<IAsyncOperation<BasicProperties>>
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>
fn get_abi(&self) -> Self::Abi[src]
fn set_abi(&mut self) -> *mut Self::Abi[src]
fn from_abi(abi: &Self::Abi) -> &Self
fn from_mut_abi(abi: &mut Self::Abi) -> &mut Self
unsafe fn slice_from_abi<'a>(abi: *const Self::Abi, len: usize) -> &'a [Self]
unsafe fn slice_from_mut_abi<'a>(
abi: *mut Self::Abi,
len: usize
) -> &'a mut [Self]
abi: *mut Self::Abi,
len: usize
) -> &'a mut [Self]
fn into_abi(self) -> Self::Abi
impl Clone for IStorageFolder[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl ComInterface for IStorageFolder[src]
type VTable = abi_IStorageFolder
fn iid() -> Guid[src]
fn as_iunknown(&self) -> Option<NonNullRawComPtr<IUnknown>>
fn query<Into>(&self) -> Into where
Into: ComInterface,
Into: ComInterface,
fn is_null(&self) -> bool
fn is_agile(&self) -> bool
unsafe fn raw_query<T>(&self, iid: &Guid, ppv: &mut T) where
T: ComInterface,
T: ComInterface,
impl Debug for IStorageFolder[src]
impl Default for IStorageFolder[src]
impl<'_> From<&'_ IStorageFolder> for IStorageItem[src]
fn from(value: &IStorageFolder) -> Self[src]
impl<'_> From<&'_ IStorageFolder> for Object[src]
fn from(value: &IStorageFolder) -> Self[src]
impl<'_> From<&'_ StorageFolder> for IStorageFolder[src]
fn from(value: &StorageFolder) -> Self[src]
impl From<IStorageFolder> for IStorageItem[src]
fn from(value: IStorageFolder) -> Self[src]
impl From<IStorageFolder> for Object[src]
fn from(value: IStorageFolder) -> Self[src]
impl From<StorageFolder> for IStorageFolder[src]
fn from(value: StorageFolder) -> Self[src]
impl<'a> Into<Param<'a, IStorageItem>> for IStorageFolder[src]
fn into(self) -> Param<'a, IStorageItem>[src]
impl<'a> Into<Param<'a, IStorageItem>> for &'a IStorageFolder[src]
fn into(self) -> Param<'a, IStorageItem>[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,