#[repr(C)]
pub struct IShellLinkW_Vtbl {
Show 19 fields pub base__: IUnknown_Vtbl, pub GetPath: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32, _: *mut WIN32_FIND_DATAW, _: u32) -> HRESULT, pub GetIDList: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut ITEMIDLIST) -> HRESULT, pub SetIDList: unsafe extern "system" fn(_: *mut c_void, _: *const ITEMIDLIST) -> HRESULT, pub GetDescription: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32) -> HRESULT, pub SetDescription: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub GetWorkingDirectory: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32) -> HRESULT, pub SetWorkingDirectory: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub GetArguments: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32) -> HRESULT, pub SetArguments: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub GetHotkey: unsafe extern "system" fn(_: *mut c_void, _: *mut u16) -> HRESULT, pub SetHotkey: unsafe extern "system" fn(_: *mut c_void, _: u16) -> HRESULT, pub GetShowCmd: unsafe extern "system" fn(_: *mut c_void, _: *mut SHOW_WINDOW_CMD) -> HRESULT, pub SetShowCmd: unsafe extern "system" fn(_: *mut c_void, _: SHOW_WINDOW_CMD) -> HRESULT, pub GetIconLocation: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32, _: *mut i32) -> HRESULT, pub SetIconLocation: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: i32) -> HRESULT, pub SetRelativePath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32) -> HRESULT, pub Resolve: unsafe extern "system" fn(_: *mut c_void, _: HWND, _: u32) -> HRESULT, pub SetPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§GetPath: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32, _: *mut WIN32_FIND_DATAW, _: u32) -> HRESULT§GetIDList: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut ITEMIDLIST) -> HRESULT§SetIDList: unsafe extern "system" fn(_: *mut c_void, _: *const ITEMIDLIST) -> HRESULT§GetDescription: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32) -> HRESULT§SetDescription: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§GetWorkingDirectory: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32) -> HRESULT§SetWorkingDirectory: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§GetArguments: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32) -> HRESULT§SetArguments: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§GetHotkey: unsafe extern "system" fn(_: *mut c_void, _: *mut u16) -> HRESULT§SetHotkey: unsafe extern "system" fn(_: *mut c_void, _: u16) -> HRESULT§GetShowCmd: unsafe extern "system" fn(_: *mut c_void, _: *mut SHOW_WINDOW_CMD) -> HRESULT§SetShowCmd: unsafe extern "system" fn(_: *mut c_void, _: SHOW_WINDOW_CMD) -> HRESULT§GetIconLocation: unsafe extern "system" fn(_: *mut c_void, _: PWSTR, _: i32, _: *mut i32) -> HRESULT§SetIconLocation: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: i32) -> HRESULT§SetRelativePath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: u32) -> HRESULT§Resolve: unsafe extern "system" fn(_: *mut c_void, _: HWND, _: u32) -> HRESULT§SetPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT

Implementations§

§

impl IShellLinkW_Vtbl

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