Struct audio_device_windows_sys::Windows::Win32::StructuredStorage::IStorage[][src]

#[repr(transparent)]pub struct IStorage(_);

Implementations

impl IStorage[src]

pub unsafe fn CreateStream<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>,
    grfmode: u32,
    reserved1: u32,
    reserved2: u32,
    ppstm: *mut Option<IStream>
) -> HRESULT
[src]

pub unsafe fn OpenStream<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>,
    reserved1: *mut c_void,
    grfmode: u32,
    reserved2: u32,
    ppstm: *mut Option<IStream>
) -> HRESULT
[src]

pub unsafe fn CreateStorage<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>,
    grfmode: u32,
    reserved1: u32,
    reserved2: u32,
    ppstg: *mut Option<IStorage>
) -> HRESULT
[src]

pub unsafe fn OpenStorage<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>,
    pstgpriority: impl IntoParam<'a, IStorage>,
    grfmode: u32,
    snbexclude: *mut *mut u16,
    reserved: u32,
    ppstg: *mut Option<IStorage>
) -> HRESULT
[src]

pub unsafe fn CopyTo<'a>(
    &self,
    ciidexclude: u32,
    rgiidexclude: *const Guid,
    snbexclude: *mut *mut u16,
    pstgdest: impl IntoParam<'a, IStorage>
) -> HRESULT
[src]

pub unsafe fn MoveElementTo<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>,
    pstgdest: impl IntoParam<'a, IStorage>,
    pwcsnewname: impl IntoParam<'a, PWSTR>,
    grfflags: u32
) -> HRESULT
[src]

pub unsafe fn Commit(&self, grfcommitflags: u32) -> HRESULT[src]

pub unsafe fn Revert(&self) -> HRESULT[src]

pub unsafe fn DestroyElement<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>
) -> HRESULT
[src]

pub unsafe fn RenameElement<'a>(
    &self,
    pwcsoldname: impl IntoParam<'a, PWSTR>,
    pwcsnewname: impl IntoParam<'a, PWSTR>
) -> HRESULT
[src]

pub unsafe fn SetElementTimes<'a>(
    &self,
    pwcsname: impl IntoParam<'a, PWSTR>,
    pctime: *const FILETIME,
    patime: *const FILETIME,
    pmtime: *const FILETIME
) -> HRESULT
[src]

pub unsafe fn SetClass(&self, clsid: *const Guid) -> HRESULT[src]

pub unsafe fn SetStateBits(&self, grfstatebits: u32, grfmask: u32) -> HRESULT[src]

Trait Implementations

impl Clone for IStorage[src]

impl Debug for IStorage[src]

impl Eq for IStorage[src]

impl Interface for IStorage[src]

type Vtable = IStorage_abi

impl<'a> IntoParam<'a, IUnknown> for IStorage[src]

impl<'a> IntoParam<'a, IUnknown> for &'a IStorage[src]

impl PartialEq<IStorage> for IStorage[src]

impl StructuralEq for IStorage[src]

impl StructuralPartialEq for IStorage[src]

Auto Trait Implementations

impl RefUnwindSafe for IStorage

impl !Send for IStorage

impl !Sync for IStorage

impl Unpin for IStorage

impl UnwindSafe for IStorage

Blanket Implementations

impl<T> Abi for T where
    T: Interface
[src]

type Abi = *mut c_void

The abi representation of the implementing type. Read more

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<'a, T> IntoParam<'a, T> for T where
    T: Abi
[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.