pub trait IVdsControllerPort_Impl: Sized {
// 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<()>
Object Safety§
This trait is not object safe.