#[repr(C)]
pub struct IVdsSubSystem_Vtbl {
Show 13 fields pub base__: IUnknown_Vtbl, pub GetProperties: unsafe extern "system" fn(_: *mut c_void, _: *mut VDS_SUB_SYSTEM_PROP) -> HRESULT, pub GetProvider: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub QueryControllers: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub QueryLuns: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub QueryDrives: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub GetDrive: unsafe extern "system" fn(_: *mut c_void, _: i16, _: i16, _: *mut *mut c_void) -> HRESULT, pub Reenumerate: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetControllerStatus: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: i32, _: *const GUID, _: i32) -> HRESULT, pub CreateLun: unsafe extern "system" fn(_: *mut c_void, _: VDS_LUN_TYPE, _: u64, _: *const GUID, _: i32, _: PCWSTR, _: *const VDS_HINTS, _: *mut *mut c_void) -> HRESULT, pub ReplaceDrive: unsafe extern "system" fn(_: *mut c_void, _: GUID, _: GUID) -> HRESULT, pub SetStatus: unsafe extern "system" fn(_: *mut c_void, _: VDS_SUB_SYSTEM_STATUS) -> HRESULT, pub QueryMaxLunCreateSize: unsafe extern "system" fn(_: *mut c_void, _: VDS_LUN_TYPE, _: *const GUID, _: i32, _: *const VDS_HINTS, _: *mut u64) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§GetProperties: unsafe extern "system" fn(_: *mut c_void, _: *mut VDS_SUB_SYSTEM_PROP) -> HRESULT§GetProvider: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§QueryControllers: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§QueryLuns: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§QueryDrives: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§GetDrive: unsafe extern "system" fn(_: *mut c_void, _: i16, _: i16, _: *mut *mut c_void) -> HRESULT§Reenumerate: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetControllerStatus: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: i32, _: *const GUID, _: i32) -> HRESULT§CreateLun: unsafe extern "system" fn(_: *mut c_void, _: VDS_LUN_TYPE, _: u64, _: *const GUID, _: i32, _: PCWSTR, _: *const VDS_HINTS, _: *mut *mut c_void) -> HRESULT§ReplaceDrive: unsafe extern "system" fn(_: *mut c_void, _: GUID, _: GUID) -> HRESULT§SetStatus: unsafe extern "system" fn(_: *mut c_void, _: VDS_SUB_SYSTEM_STATUS) -> HRESULT§QueryMaxLunCreateSize: unsafe extern "system" fn(_: *mut c_void, _: VDS_LUN_TYPE, _: *const GUID, _: i32, _: *const VDS_HINTS, _: *mut u64) -> HRESULT

Implementations§

§

impl IVdsSubSystem_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IVdsSubSystem_Impl, const OFFSET: isize>( ) -> IVdsSubSystem_Vtbl

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.