Struct ITaskbarList3
pub struct ITaskbarList3(/* private fields */);
Implementations§
§impl ITaskbarList3
impl ITaskbarList3
pub unsafe fn SetProgressValue( &self, hwnd: HWND, ullcompleted: u64, ulltotal: u64, ) -> Result<()>
pub unsafe fn SetProgressState( &self, hwnd: HWND, tbpflags: TBPFLAG, ) -> Result<()>
pub unsafe fn RegisterTab(&self, hwndtab: HWND, hwndmdi: HWND) -> Result<()>
pub unsafe fn UnregisterTab(&self, hwndtab: HWND) -> Result<()>
pub unsafe fn SetTabOrder( &self, hwndtab: HWND, hwndinsertbefore: HWND, ) -> Result<()>
pub unsafe fn SetTabActive( &self, hwndtab: HWND, hwndmdi: HWND, dwreserved: u32, ) -> Result<()>
pub unsafe fn ThumbBarAddButtons( &self, hwnd: HWND, pbutton: &[THUMBBUTTON], ) -> Result<()>
pub unsafe fn ThumbBarUpdateButtons( &self, hwnd: HWND, pbutton: &[THUMBBUTTON], ) -> Result<()>
pub unsafe fn ThumbBarSetImageList( &self, hwnd: HWND, himl: HIMAGELIST, ) -> Result<()>
pub unsafe fn SetOverlayIcon<P2>(
&self,
hwnd: HWND,
hicon: HICON,
pszdescription: P2,
) -> Result<()>where
P2: Param<PCWSTR>,
pub unsafe fn SetThumbnailTooltip<P1>(
&self,
hwnd: HWND,
psztip: P1,
) -> Result<()>where
P1: Param<PCWSTR>,
pub unsafe fn SetThumbnailClip( &self, hwnd: HWND, prcclip: *const RECT, ) -> Result<()>
Methods from Deref<Target = ITaskbarList2>§
pub unsafe fn MarkFullscreenWindow( &self, hwnd: HWND, ffullscreen: bool, ) -> Result<()>
Methods from Deref<Target = ITaskbarList>§
Trait Implementations§
§impl CanInto<ITaskbarList> for ITaskbarList3
impl CanInto<ITaskbarList> for ITaskbarList3
§impl CanInto<ITaskbarList2> for ITaskbarList3
impl CanInto<ITaskbarList2> for ITaskbarList3
§impl CanInto<ITaskbarList3> for ITaskbarList4
impl CanInto<ITaskbarList3> for ITaskbarList4
§impl CanInto<IUnknown> for ITaskbarList3
impl CanInto<IUnknown> for ITaskbarList3
§impl Clone for ITaskbarList3
impl Clone for ITaskbarList3
§fn clone(&self) -> ITaskbarList3
fn clone(&self) -> ITaskbarList3
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 more§impl Debug for ITaskbarList3
impl Debug for ITaskbarList3
§impl Deref for ITaskbarList3
impl Deref for ITaskbarList3
§impl From<&ITaskbarList3> for &ITaskbarList
impl From<&ITaskbarList3> for &ITaskbarList
§fn from(value: &ITaskbarList3) -> Self
fn from(value: &ITaskbarList3) -> Self
Converts to this type from the input type.
§impl From<&ITaskbarList3> for &ITaskbarList2
impl From<&ITaskbarList3> for &ITaskbarList2
§fn from(value: &ITaskbarList3) -> Self
fn from(value: &ITaskbarList3) -> Self
Converts to this type from the input type.
§impl From<&ITaskbarList3> for &IUnknown
impl From<&ITaskbarList3> for &IUnknown
§fn from(value: &ITaskbarList3) -> Self
fn from(value: &ITaskbarList3) -> Self
Converts to this type from the input type.
§impl From<&ITaskbarList4> for &ITaskbarList3
impl From<&ITaskbarList4> for &ITaskbarList3
§fn from(value: &ITaskbarList4) -> Self
fn from(value: &ITaskbarList4) -> Self
Converts to this type from the input type.
§impl From<ITaskbarList3> for ITaskbarList
impl From<ITaskbarList3> for ITaskbarList
§fn from(value: ITaskbarList3) -> Self
fn from(value: ITaskbarList3) -> Self
Converts to this type from the input type.
§impl From<ITaskbarList3> for ITaskbarList2
impl From<ITaskbarList3> for ITaskbarList2
§fn from(value: ITaskbarList3) -> Self
fn from(value: ITaskbarList3) -> Self
Converts to this type from the input type.
§impl From<ITaskbarList3> for IUnknown
impl From<ITaskbarList3> for IUnknown
§fn from(value: ITaskbarList3) -> Self
fn from(value: ITaskbarList3) -> Self
Converts to this type from the input type.
§impl From<ITaskbarList4> for ITaskbarList3
impl From<ITaskbarList4> for ITaskbarList3
§fn from(value: ITaskbarList4) -> Self
fn from(value: ITaskbarList4) -> Self
Converts to this type from the input type.
§impl Interface for ITaskbarList3
impl Interface for ITaskbarList3
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for ITaskbarList3
impl PartialEq for ITaskbarList3
impl Eq for ITaskbarList3
impl StructuralPartialEq for ITaskbarList3
Auto Trait Implementations§
impl Freeze for ITaskbarList3
impl RefUnwindSafe for ITaskbarList3
impl !Send for ITaskbarList3
impl !Sync for ITaskbarList3
impl Unpin for ITaskbarList3
impl UnwindSafe for ITaskbarList3
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