#[repr(C)]pub struct ISurrogateVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut ISurrogate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut ISurrogate) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut ISurrogate) -> ULONG>,
pub LoadDllServer: Option<unsafe extern "C" fn(This: *mut ISurrogate, Clsid: *const IID) -> HRESULT>,
pub FreeSurrogate: Option<unsafe extern "C" fn(This: *mut ISurrogate) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut ISurrogate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut ISurrogate) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut ISurrogate) -> ULONG>
§LoadDllServer: Option<unsafe extern "C" fn(This: *mut ISurrogate, Clsid: *const IID) -> HRESULT>
§FreeSurrogate: Option<unsafe extern "C" fn(This: *mut ISurrogate) -> HRESULT>
Trait Implementations§
Source§impl Clone for ISurrogateVtbl
impl Clone for ISurrogateVtbl
Source§fn clone(&self) -> ISurrogateVtbl
fn clone(&self) -> ISurrogateVtbl
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ISurrogateVtbl
impl Debug for ISurrogateVtbl
Source§impl Ord for ISurrogateVtbl
impl Ord for ISurrogateVtbl
Source§fn cmp(&self, other: &ISurrogateVtbl) -> Ordering
fn cmp(&self, other: &ISurrogateVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ISurrogateVtbl
impl PartialEq for ISurrogateVtbl
Source§impl PartialOrd for ISurrogateVtbl
impl PartialOrd for ISurrogateVtbl
impl Copy for ISurrogateVtbl
impl Eq for ISurrogateVtbl
impl StructuralPartialEq for ISurrogateVtbl
Auto Trait Implementations§
impl Freeze for ISurrogateVtbl
impl RefUnwindSafe for ISurrogateVtbl
impl Send for ISurrogateVtbl
impl Sync for ISurrogateVtbl
impl Unpin for ISurrogateVtbl
impl UnwindSafe for ISurrogateVtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more