windows::Win32::Storage::VirtualDiskService

Trait IVdsIscsiPortalGroup_Impl

pub trait IVdsIscsiPortalGroup_Impl: IUnknownImpl {
    // Required methods
    fn GetProperties(
        &self,
        pportalgroupprop: *mut VDS_ISCSI_PORTALGROUP_PROP,
    ) -> Result<()>;
    fn GetTarget(&self) -> Result<IVdsIscsiTarget>;
    fn QueryAssociatedPortals(&self) -> Result<IEnumVdsObject>;
    fn AddPortal(&self, portalid: &GUID) -> Result<IVdsAsync>;
    fn RemovePortal(&self, portalid: &GUID) -> Result<IVdsAsync>;
    fn Delete(&self) -> Result<IVdsAsync>;
}

Required Methods§

fn GetProperties( &self, pportalgroupprop: *mut VDS_ISCSI_PORTALGROUP_PROP, ) -> Result<()>

fn GetTarget(&self) -> Result<IVdsIscsiTarget>

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

fn AddPortal(&self, portalid: &GUID) -> Result<IVdsAsync>

fn RemovePortal(&self, portalid: &GUID) -> Result<IVdsAsync>

fn Delete(&self) -> Result<IVdsAsync>

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§