Trait IEnhancedStorageSilo_Impl
pub trait IEnhancedStorageSilo_Impl: IUnknownImpl {
// Required methods
fn GetInfo(&self) -> Result<SILO_INFO>;
fn GetActions(
&self,
pppienhancedstoragesiloactions: *mut *mut Option<IEnhancedStorageSiloAction>,
pcenhancedstoragesiloactions: *mut u32,
) -> Result<()>;
fn SendCommand(
&self,
command: u8,
pbcommandbuffer: *const u8,
cbcommandbuffer: u32,
pbresponsebuffer: *mut u8,
pcbresponsebuffer: *mut u32,
) -> Result<()>;
fn GetPortableDevice(&self) -> Result<IPortableDevice>;
fn GetDevicePath(&self) -> Result<PWSTR>;
}
Required Methods§
fn GetInfo(&self) -> Result<SILO_INFO>
fn GetActions( &self, pppienhancedstoragesiloactions: *mut *mut Option<IEnhancedStorageSiloAction>, pcenhancedstoragesiloactions: *mut u32, ) -> Result<()>
fn SendCommand( &self, command: u8, pbcommandbuffer: *const u8, cbcommandbuffer: u32, pbresponsebuffer: *mut u8, pcbresponsebuffer: *mut u32, ) -> Result<()>
fn GetPortableDevice(&self) -> Result<IPortableDevice>
fn GetDevicePath(&self) -> Result<PWSTR>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.