windows::Win32::Storage::VirtualDiskService

Trait IVdsControllerPort_Impl

pub trait IVdsControllerPort_Impl: IUnknownImpl {
    // Required methods
    fn GetProperties(&self, pportprop: *mut VDS_PORT_PROP) -> Result<()>;
    fn GetController(&self) -> Result<IVdsController>;
    fn QueryAssociatedLuns(&self) -> Result<IEnumVdsObject>;
    fn Reset(&self) -> Result<()>;
    fn SetStatus(&self, status: VDS_PORT_STATUS) -> Result<()>;
}

Required Methods§

fn GetProperties(&self, pportprop: *mut VDS_PORT_PROP) -> Result<()>

fn GetController(&self) -> Result<IVdsController>

fn QueryAssociatedLuns(&self) -> Result<IEnumVdsObject>

fn Reset(&self) -> Result<()>

fn SetStatus(&self, status: VDS_PORT_STATUS) -> Result<()>

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.

Implementors§