[][src]Struct winapi::um::sapi51::ISpeechFileStream

#[repr(C)]pub struct ISpeechFileStream {
    pub lpVtbl: *const ISpeechFileStreamVtbl,
}

Fields

lpVtbl: *const ISpeechFileStreamVtbl

Implementations

impl ISpeechFileStream[src]

pub unsafe fn Open(
    &self,
    FileName: BSTR,
    FileMode: SpeechStreamFileMode,
    DoEvents: VARIANT_BOOL
) -> HRESULT
[src]

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

Methods from Deref<Target = ISpeechBaseStream>

pub unsafe fn get_Format(
    &self,
    AudioFormat: *mut *mut ISpeechAudioFormat
) -> HRESULT
[src]

pub unsafe fn putref_Format(
    &self,
    AudioFormat: *mut ISpeechAudioFormat
) -> HRESULT
[src]

pub unsafe fn Read(
    &self,
    Buffer: *mut VARIANT,
    NumberOfBytes: c_long,
    BytesRead: *mut c_long
) -> HRESULT
[src]

pub unsafe fn Write(
    &self,
    Buffer: VARIANT,
    BytesWritten: *mut c_long
) -> HRESULT
[src]

pub unsafe fn Seek(
    &self,
    Position: VARIANT,
    Origin: SpeechStreamSeekPositionType,
    NewPosition: *mut VARIANT
) -> HRESULT
[src]

Trait Implementations

impl Deref for ISpeechFileStream[src]

type Target = ISpeechBaseStream

The resulting type after dereferencing.

impl Interface for ISpeechFileStream[src]

Auto Trait Implementations

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, 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.