Trait windows::Win32::Storage::Imapi::IWriteEngine2_Impl
pub trait IWriteEngine2_Impl: Sized + IDispatch_Impl {
Show 13 methods
// Required methods
fn WriteSection(
&self,
data: Option<&IStream>,
startingblockaddress: i32,
numberofblocks: i32,
) -> Result<()>;
fn CancelWrite(&self) -> Result<()>;
fn SetRecorder(&self, value: Option<&IDiscRecorder2Ex>) -> Result<()>;
fn Recorder(&self) -> Result<IDiscRecorder2Ex>;
fn SetUseStreamingWrite12(&self, value: VARIANT_BOOL) -> Result<()>;
fn UseStreamingWrite12(&self) -> Result<VARIANT_BOOL>;
fn SetStartingSectorsPerSecond(&self, value: i32) -> Result<()>;
fn StartingSectorsPerSecond(&self) -> Result<i32>;
fn SetEndingSectorsPerSecond(&self, value: i32) -> Result<()>;
fn EndingSectorsPerSecond(&self) -> Result<i32>;
fn SetBytesPerSector(&self, value: i32) -> Result<()>;
fn BytesPerSector(&self) -> Result<i32>;
fn WriteInProgress(&self) -> Result<VARIANT_BOOL>;
}
Required Methods§
fn WriteSection( &self, data: Option<&IStream>, startingblockaddress: i32, numberofblocks: i32, ) -> Result<()>
fn CancelWrite(&self) -> Result<()>
fn SetRecorder(&self, value: Option<&IDiscRecorder2Ex>) -> Result<()>
fn Recorder(&self) -> Result<IDiscRecorder2Ex>
fn SetUseStreamingWrite12(&self, value: VARIANT_BOOL) -> Result<()>
fn UseStreamingWrite12(&self) -> Result<VARIANT_BOOL>
fn SetStartingSectorsPerSecond(&self, value: i32) -> Result<()>
fn StartingSectorsPerSecond(&self) -> Result<i32>
fn SetEndingSectorsPerSecond(&self, value: i32) -> Result<()>
fn EndingSectorsPerSecond(&self) -> Result<i32>
fn SetBytesPerSector(&self, value: i32) -> Result<()>
fn BytesPerSector(&self) -> Result<i32>
fn WriteInProgress(&self) -> Result<VARIANT_BOOL>
Object Safety§
This trait is not object safe.