Struct windows::Foundation::IAsyncAction
#[repr(transparent)]pub struct IAsyncAction(_);
Expand description
Required features: "Foundation"
Implementations§
§impl IAsyncAction
impl IAsyncAction
pub fn SetCompleted<P0>(&self, handler: P0) -> Result<()>where P0: IntoParam<AsyncActionCompletedHandler>,
pub fn Completed(&self) -> Result<AsyncActionCompletedHandler>
pub fn GetResults(&self) -> Result<()>
pub fn Id(&self) -> Result<u32>
pub fn Status(&self) -> Result<AsyncStatus>
pub fn ErrorCode(&self) -> Result<HRESULT>
pub fn Cancel(&self) -> Result<()>
pub fn Close(&self) -> Result<()>
§impl IAsyncAction
impl IAsyncAction
Trait Implementations§
§impl Clone for IAsyncAction
impl Clone for IAsyncAction
§impl ComInterface for IAsyncAction
impl ComInterface for IAsyncAction
fn as_unknown(&self) -> &IUnknown
§impl Debug for IAsyncAction
impl Debug for IAsyncAction
§impl Future for IAsyncAction
impl Future for IAsyncAction
§impl Interface for IAsyncAction
impl Interface for IAsyncAction
type Vtable = IAsyncAction_Vtbl
§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.
§impl PartialEq<IAsyncAction> for IAsyncAction
impl PartialEq<IAsyncAction> for IAsyncAction
impl Eq for IAsyncAction
impl Send for IAsyncAction
impl Sync for IAsyncAction
Auto Trait Implementations§
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
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more