pub struct ITravelLog(/* private fields */);
Implementations§
Source§impl ITravelLog
impl ITravelLog
pub unsafe fn AddEntry<'a>( &self, punk: impl IntoParam<'a, IUnknown>, fislocalanchor: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn UpdateEntry<'a>( &self, punk: impl IntoParam<'a, IUnknown>, fislocalanchor: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn UpdateExternal<'a>( &self, punk: impl IntoParam<'a, IUnknown>, punkhlbrowsecontext: impl IntoParam<'a, IUnknown>, ) -> Result<()>
pub unsafe fn Travel<'a>( &self, punk: impl IntoParam<'a, IUnknown>, ioffset: i32, ) -> Result<()>
pub unsafe fn GetTravelEntry<'a>( &self, punk: impl IntoParam<'a, IUnknown>, ioffset: i32, ) -> Result<ITravelEntry>
pub unsafe fn FindTravelEntry<'a>( &self, punk: impl IntoParam<'a, IUnknown>, pidl: *mut ITEMIDLIST, ) -> Result<ITravelEntry>
pub unsafe fn GetToolTipText<'a>( &self, punk: impl IntoParam<'a, IUnknown>, ioffset: i32, idstemplate: i32, pwztext: PWSTR, cchtext: u32, ) -> Result<()>
pub unsafe fn InsertMenuEntries<'a>( &self, punk: impl IntoParam<'a, IUnknown>, hmenu: impl IntoParam<'a, HMENU>, npos: i32, idfirst: i32, idlast: i32, dwflags: u32, ) -> Result<()>
pub unsafe fn Clone(&self) -> Result<ITravelLog>
pub unsafe fn CountEntries<'a>(&self, punk: impl IntoParam<'a, IUnknown>) -> u32
pub unsafe fn Revert(&self) -> Result<()>
Trait Implementations§
Source§impl Clone for ITravelLog
impl Clone for ITravelLog
Source§fn clone(&self) -> ITravelLog
fn clone(&self) -> ITravelLog
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 ITravelLog
impl Debug for ITravelLog
Source§impl From<&ITravelLog> for IUnknown
impl From<&ITravelLog> for IUnknown
Source§fn from(value: &ITravelLog) -> Self
fn from(value: &ITravelLog) -> Self
Converts to this type from the input type.
Source§impl From<ITravelLog> for IUnknown
impl From<ITravelLog> for IUnknown
Source§fn from(value: ITravelLog) -> Self
fn from(value: ITravelLog) -> Self
Converts to this type from the input type.
Source§impl Interface for ITravelLog
impl Interface for ITravelLog
const IID: Guid
type Vtable = ITravelLog_abi
Source§unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
Safety Read more
Source§unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
Safety Read more
Source§impl PartialEq for ITravelLog
impl PartialEq for ITravelLog
impl Eq for ITravelLog
impl StructuralPartialEq for ITravelLog
Auto Trait Implementations§
impl Freeze for ITravelLog
impl RefUnwindSafe for ITravelLog
impl !Send for ITravelLog
impl !Sync for ITravelLog
impl Unpin for ITravelLog
impl UnwindSafe for ITravelLog
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
type DefaultType = Option<T>
Source§fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
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