Trait IVdsLunPlex_Impl
pub trait IVdsLunPlex_Impl: IUnknownImpl {
// Required methods
fn GetProperties(&self, pplexprop: *mut VDS_LUN_PLEX_PROP) -> Result<()>;
fn GetLun(&self) -> Result<IVdsLun>;
fn QueryExtents(
&self,
ppextentarray: *mut *mut VDS_DRIVE_EXTENT,
plnumberofextents: *mut i32,
) -> Result<()>;
fn QueryHints(&self, phints: *mut VDS_HINTS) -> Result<()>;
fn ApplyHints(&self, phints: *const VDS_HINTS) -> Result<()>;
}
Required Methods§
fn GetProperties(&self, pplexprop: *mut VDS_LUN_PLEX_PROP) -> Result<()>
fn GetLun(&self) -> Result<IVdsLun>
fn QueryExtents( &self, ppextentarray: *mut *mut VDS_DRIVE_EXTENT, plnumberofextents: *mut i32, ) -> Result<()>
fn QueryHints(&self, phints: *mut VDS_HINTS) -> Result<()>
fn ApplyHints(&self, phints: *const VDS_HINTS) -> 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.