Struct HandleOrInvalid

1.63.0 · Source
#[repr(transparent)]
pub struct HandleOrInvalid(RawHandle);
Available on Windows only.
Expand description

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.

Tuple Fields§

§0: RawHandle

Implementations§

Source§

impl HandleOrInvalid

1.63.0 · Source

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.

§Safety

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.

Source

fn is_valid(&self) -> bool

Trait Implementations§

1.63.0 · Source§

impl Debug for HandleOrInvalid

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
1.63.0 · Source§

impl Drop for HandleOrInvalid

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
1.63.0 · Source§

impl TryFrom<HandleOrInvalid> for OwnedHandle

Source§

type Error = InvalidHandleError

The type returned in the event of a conversion error.
Source§

fn try_from( handle_or_invalid: HandleOrInvalid, ) -> Result<Self, InvalidHandleError>

Performs the conversion.
1.63.0 · Source§

impl Send for HandleOrInvalid

1.63.0 · Source§

impl Sync for HandleOrInvalid

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> SizedTypeProperties for T

Source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
Source§

#[doc(hidden)] const LAYOUT: Layout = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)] const MAX_SLICE_LEN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
The largest safe length for a [Self]. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.