pub struct HandleOrInvalid(/* private fields */);
FFI type for handles in return values or out parameters, where INVALID_HANDLE_VALUE is used as a sentry value to indicate errors, such as in the return value of CreateFileW. This uses repr(transparent) and has the representation of a host handle, so that it can be used in such FFI declarations.
The only thing you can usefully do with a HandleOrInvalid is to convert it into an OwnedHandle using its TryFrom implementation; this conversion takes care of the check for INVALID_HANDLE_VALUE. This ensures that such FFI calls cannot start using the handle without checking for INVALID_HANDLE_VALUE first.
This type may hold any handle value that OwnedHandle may hold, except that when it holds -1, that value is interpreted to mean INVALID_HANDLE_VALUE.
If holds a handle other than INVALID_HANDLE_VALUE, it will close the handle on drop.
impl HandleOrInvalid
pub unsafe fn from_raw_handle(handle: RawHandle) -> Self
Constructs a new instance of Self from the given RawHandle returned from a Windows API that uses INVALID_HANDLE_VALUE to indicate failure, such as CreateFileW.
Use HandleOrNull instead of HandleOrInvalid for APIs that use null to indicate failure.
The passed handle value must either satisfy the safety requirements of FromRawHandle::from_raw_handle, or be INVALID_HANDLE_VALUE (-1). Note that not all Windows APIs use INVALID_HANDLE_VALUE for errors; see here for the full story.
impl Debug for HandleOrInvalid
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Drop for HandleOrInvalid
impl TryFrom<HandleOrInvalid> for OwnedHandle
type Error = InvalidHandleError
fn try_from(
handle_or_invalid: HandleOrInvalid,
) -> Result<Self, InvalidHandleError>impl Send for HandleOrInvalid
impl Sync for HandleOrInvalid
impl Freeze for HandleOrInvalid
impl RefUnwindSafe for HandleOrInvalid
impl Unpin for HandleOrInvalid
impl UnwindSafe for HandleOrInvalid
impl<T> Any for Twhere
T: 'static + ?Sized,impl<T> Borrow<T> for Twhere
T: ?Sized,impl<T> BorrowMut<T> for Twhere
T: ?Sized,impl<T> From<T> for T
fn from(t: T) -> T
Returns the argument unchanged.
impl<T, U> Into<U> for Twhere
U: From<T>,fn into(self) -> U
Calls U::from(self).
That is, this conversion is whatever the implementation of From<T> for U chooses to do.
impl<T, U> TryFrom<U> for Twhere
U: Into<T>,type Error = Infallible
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/windows/io/struct.HandleOrInvalid.html