#[repr(C)]
pub struct IUpdateSearcher_Vtbl {
Show 19 fields pub base__: IDispatch_Vtbl, pub CanAutomaticallyUpgradeService: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub SetCanAutomaticallyUpgradeService: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT, pub ClientApplicationID: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub SetClientApplicationID: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT, pub IncludePotentiallySupersededUpdates: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub SetIncludePotentiallySupersededUpdates: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT, pub ServerSelection: unsafe extern "system" fn(_: *mut c_void, _: *mut ServerSelection) -> HRESULT, pub SetServerSelection: unsafe extern "system" fn(_: *mut c_void, _: ServerSelection) -> HRESULT, pub BeginSearch: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut c_void, _: MaybeUninit<VARIANT>, _: *mut *mut c_void) -> HRESULT, pub EndSearch: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub EscapeString: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub QueryHistory: unsafe extern "system" fn(_: *mut c_void, _: i32, _: i32, _: *mut *mut c_void) -> HRESULT, pub Search: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut *mut c_void) -> HRESULT, pub Online: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub SetOnline: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT, pub GetTotalHistoryCount: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT, pub ServiceID: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub SetServiceID: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT,
}

Fields§

§base__: IDispatch_Vtbl§CanAutomaticallyUpgradeService: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§SetCanAutomaticallyUpgradeService: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT§ClientApplicationID: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§SetClientApplicationID: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT§IncludePotentiallySupersededUpdates: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§SetIncludePotentiallySupersededUpdates: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT§ServerSelection: unsafe extern "system" fn(_: *mut c_void, _: *mut ServerSelection) -> HRESULT§SetServerSelection: unsafe extern "system" fn(_: *mut c_void, _: ServerSelection) -> HRESULT§BeginSearch: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut c_void, _: MaybeUninit<VARIANT>, _: *mut *mut c_void) -> HRESULT§EndSearch: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut *mut c_void) -> HRESULT§EscapeString: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut MaybeUninit<BSTR>) -> HRESULT§QueryHistory: unsafe extern "system" fn(_: *mut c_void, _: i32, _: i32, _: *mut *mut c_void) -> HRESULT§Search: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut *mut c_void) -> HRESULT§Online: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§SetOnline: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT§GetTotalHistoryCount: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT§ServiceID: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§SetServiceID: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT

Implementations§

§

impl IUpdateSearcher_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IUpdateSearcher_Impl, const OFFSET: isize>( ) -> IUpdateSearcher_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.