Struct outlook_mapi_sys::Microsoft::Office::Outlook::MAPI::Win32::IMAPIProgress
source · pub struct IMAPIProgress(/* private fields */);Implementations§
source§impl IMAPIProgress
impl IMAPIProgress
pub unsafe fn Progress( &self, ulvalue: u32, ulcount: u32, ultotal: u32 ) -> Result<()>
pub unsafe fn GetFlags(&self, lpulflags: *mut u32) -> Result<()>
pub unsafe fn GetMax(&self, lpulmax: *mut u32) -> Result<()>
pub unsafe fn GetMin(&self, lpulmin: *mut u32) -> Result<()>
pub unsafe fn SetLimits( &self, lpulmin: *mut u32, lpulmax: *mut u32, lpulflags: *mut u32 ) -> Result<()>
Trait Implementations§
source§impl Clone for IMAPIProgress
impl Clone for IMAPIProgress
source§fn clone(&self) -> IMAPIProgress
fn clone(&self) -> IMAPIProgress
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 ComInterface for IMAPIProgress
impl ComInterface for IMAPIProgress
fn as_unknown(&self) -> &IUnknown
source§fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
Attempts to cast the current interface to another interface using
QueryInterface. Read moresource§impl Debug for IMAPIProgress
impl Debug for IMAPIProgress
source§impl Interface for IMAPIProgress
impl Interface for IMAPIProgress
type Vtable = IMAPIProgress_Vtbl
source§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.source§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.
source§impl PartialEq for IMAPIProgress
impl PartialEq for IMAPIProgress
source§fn eq(&self, other: &IMAPIProgress) -> bool
fn eq(&self, other: &IMAPIProgress) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for IMAPIProgress
impl StructuralPartialEq for IMAPIProgress
Auto Trait Implementations§
impl RefUnwindSafe for IMAPIProgress
impl !Send for IMAPIProgress
impl !Sync for IMAPIProgress
impl Unpin for IMAPIProgress
impl UnwindSafe for IMAPIProgress
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