pub struct Win32Error {
pub code: HRESULT,
}Expand description
Represents an error thrown from Win32 code.
Fields§
§code: HRESULTThe original HRESULT value.
Implementations§
Source§impl Win32Error
impl Win32Error
Sourcepub fn new(code: HRESULT) -> Win32Error
pub fn new(code: HRESULT) -> Win32Error
Creates a new Win32Error for an HRESULT value.
§Examples
let error = GetLastError();
Win32Error::new(error)Trait Implementations§
Source§impl Clone for Win32Error
impl Clone for Win32Error
Source§fn clone(&self) -> Win32Error
fn clone(&self) -> Win32Error
Returns a duplicate 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 Debug for Win32Error
impl Debug for Win32Error
Source§impl Display for Win32Error
impl Display for Win32Error
Source§impl Error for Win32Error
impl Error for Win32Error
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Source§impl From<Win32Error> for GetPropertyError
impl From<Win32Error> for GetPropertyError
Source§fn from(error: Win32Error) -> Self
fn from(error: Win32Error) -> Self
Converts to this type from the input type.
Source§impl From<Win32Error> for SoundCoreError
impl From<Win32Error> for SoundCoreError
Source§fn from(err: Win32Error) -> SoundCoreError
fn from(err: Win32Error) -> SoundCoreError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Win32Error
impl RefUnwindSafe for Win32Error
impl Send for Win32Error
impl Sync for Win32Error
impl Unpin for Win32Error
impl UnwindSafe for Win32Error
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