Type Definition intercom::ComResult

source · []
pub type ComResult<A> = Result<A, ComError>;
Expand description

Basic COM result type.

The ComResult maps the Rust concept of Ok and Err values to COM [out, retval] parameter and HRESULT return value.

Trait Implementations

Converts to this type from the input type.