pub struct IOperationsProgressDialog(/* private fields */);
Implementations§
Source§impl IOperationsProgressDialog
impl IOperationsProgressDialog
pub unsafe fn StartProgressDialog<'a>( &self, hwndowner: impl IntoParam<'a, HWND>, flags: u32, ) -> Result<()>
pub unsafe fn StopProgressDialog(&self) -> Result<()>
pub unsafe fn SetOperation(&self, action: SPACTION) -> Result<()>
pub unsafe fn SetMode(&self, mode: u32) -> Result<()>
pub unsafe fn UpdateProgress( &self, ullpointscurrent: u64, ullpointstotal: u64, ullsizecurrent: u64, ullsizetotal: u64, ullitemscurrent: u64, ullitemstotal: u64, ) -> Result<()>
pub unsafe fn UpdateLocations<'a>( &self, psisource: impl IntoParam<'a, IShellItem>, psitarget: impl IntoParam<'a, IShellItem>, psiitem: impl IntoParam<'a, IShellItem>, ) -> Result<()>
pub unsafe fn ResetTimer(&self) -> Result<()>
pub unsafe fn PauseTimer(&self) -> Result<()>
pub unsafe fn ResumeTimer(&self) -> Result<()>
pub unsafe fn GetMilliseconds( &self, pullelapsed: *mut u64, pullremaining: *mut u64, ) -> Result<()>
pub unsafe fn GetOperationStatus(&self) -> Result<PDOPSTATUS>
Trait Implementations§
Source§impl Clone for IOperationsProgressDialog
impl Clone for IOperationsProgressDialog
Source§fn clone(&self) -> IOperationsProgressDialog
fn clone(&self) -> IOperationsProgressDialog
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 IOperationsProgressDialog
impl Debug for IOperationsProgressDialog
Source§impl From<&IOperationsProgressDialog> for IUnknown
impl From<&IOperationsProgressDialog> for IUnknown
Source§fn from(value: &IOperationsProgressDialog) -> Self
fn from(value: &IOperationsProgressDialog) -> Self
Converts to this type from the input type.
Source§impl From<IOperationsProgressDialog> for IUnknown
impl From<IOperationsProgressDialog> for IUnknown
Source§fn from(value: IOperationsProgressDialog) -> Self
fn from(value: IOperationsProgressDialog) -> Self
Converts to this type from the input type.
Source§impl Interface for IOperationsProgressDialog
impl Interface for IOperationsProgressDialog
const IID: Guid
type Vtable = IOperationsProgressDialog_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
impl Eq for IOperationsProgressDialog
impl StructuralPartialEq for IOperationsProgressDialog
Auto Trait Implementations§
impl Freeze for IOperationsProgressDialog
impl RefUnwindSafe for IOperationsProgressDialog
impl !Send for IOperationsProgressDialog
impl !Sync for IOperationsProgressDialog
impl Unpin for IOperationsProgressDialog
impl UnwindSafe for IOperationsProgressDialog
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