Trait winsafe::prelude::FormattedError

source ·
pub trait FormattedError: Into<u32> {
    // Provided method
    fn FormatMessage(self) -> String { ... }
}
Available on crate feature kernel only.
Expand description

A system error which can be formatted with FormatMessage.

Provided Methods§

source

fn FormatMessage(self) -> String

Returns the textual description of the system error, by calling FormatMessage. function.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl FormattedError for ERROR

source§

impl FormattedError for HRESULT

Available on crate feature ole only.