pub struct HResult(pub u32);
Expand description
A wrapper for a windows HRESULT.
Tuple Fields§
§0: u32
Implementations§
§impl HResult
impl HResult
pub fn get_last_error() -> HResult
pub fn get_last_error() -> HResult
Get the last error for this thread
pub fn message(&self) -> Result<LocalWideString, Error>
pub fn message(&self) -> Result<LocalWideString, Error>
Get the message for this error using default settings.
pub fn message_with_hmodule(
&self,
module: Option<&HModule>
) -> Result<LocalWideString, Error>
pub fn message_with_hmodule(
&self,
module: Option<&HModule>
) -> Result<LocalWideString, Error>
Get the message for this error loading definitions from a given dll.
The dll must be loaded in this process when this function is called.
Trait Implementations§
§impl Error for HResult
impl Error for HResult
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()