Trait INewShortcutHookW_Impl
pub trait INewShortcutHookW_Impl: IUnknownImpl {
// Required methods
fn SetReferent(&self, pcszreferent: &PCWSTR, hwnd: HWND) -> Result<()>;
fn GetReferent(&self, pszreferent: PWSTR, cchreferent: i32) -> Result<()>;
fn SetFolder(&self, pcszfolder: &PCWSTR) -> Result<()>;
fn GetFolder(&self, pszfolder: PWSTR, cchfolder: i32) -> Result<()>;
fn GetName(&self, pszname: PWSTR, cchname: i32) -> Result<()>;
fn GetExtension(&self, pszextension: PWSTR, cchextension: i32) -> Result<()>;
}
Required Methods§
fn SetReferent(&self, pcszreferent: &PCWSTR, hwnd: HWND) -> Result<()>
fn GetReferent(&self, pszreferent: PWSTR, cchreferent: i32) -> Result<()>
fn SetFolder(&self, pcszfolder: &PCWSTR) -> Result<()>
fn GetFolder(&self, pszfolder: PWSTR, cchfolder: i32) -> Result<()>
fn GetName(&self, pszname: PWSTR, cchname: i32) -> Result<()>
fn GetExtension(&self, pszextension: PWSTR, cchextension: i32) -> 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.