Struct io_lifetimes::OwnedHandle
1.63.0 · source · [−]#[repr(transparent)]pub struct OwnedHandle { /* private fields */ }
Expand description
An owned handle.
This closes the handle on drop.
Note that it may have the value -1
, which in OwnedHandle
always
represents a valid handle value, such as the current process handle, and
not INVALID_HANDLE_VALUE
, despite the two having the same value. See
here for the full story.
And, it may have the value NULL
(0), which can occur when consoles are
detached from processes, or when windows_subsystem
is used.
OwnedHandle
uses CloseHandle
to close its handle on drop. As such,
it must not be used with handles to open registry keys which need to be
closed with RegCloseKey
instead.
Implementations
sourceimpl OwnedHandle
impl OwnedHandle
sourcepub fn try_clone(&self) -> Result<OwnedHandle, Error>
pub fn try_clone(&self) -> Result<OwnedHandle, Error>
Creates a new OwnedHandle
instance that shares the same underlying
object as the existing OwnedHandle
instance.
Trait Implementations
sourceimpl AsHandle for OwnedHandle
impl AsHandle for OwnedHandle
sourcefn as_handle(&self) -> BorrowedHandle<'_>
fn as_handle(&self) -> BorrowedHandle<'_>
Borrows the handle. Read more
sourceimpl AsRawHandle for OwnedHandle
impl AsRawHandle for OwnedHandle
sourcefn as_raw_handle(&self) -> *mut c_void
fn as_raw_handle(&self) -> *mut c_void
Extracts the raw handle. Read more
sourceimpl Debug for OwnedHandle
impl Debug for OwnedHandle
sourceimpl Drop for OwnedHandle
impl Drop for OwnedHandle
sourceimpl From<Child> for OwnedHandle
impl From<Child> for OwnedHandle
sourcefn from(child: Child) -> OwnedHandle
fn from(child: Child) -> OwnedHandle
Converts to this type from the input type.
sourceimpl From<ChildStderr> for OwnedHandle
impl From<ChildStderr> for OwnedHandle
sourcefn from(child_stderr: ChildStderr) -> OwnedHandle
fn from(child_stderr: ChildStderr) -> OwnedHandle
Converts to this type from the input type.
sourceimpl From<ChildStdin> for OwnedHandle
impl From<ChildStdin> for OwnedHandle
sourcefn from(child_stdin: ChildStdin) -> OwnedHandle
fn from(child_stdin: ChildStdin) -> OwnedHandle
Converts to this type from the input type.
sourceimpl From<ChildStdout> for OwnedHandle
impl From<ChildStdout> for OwnedHandle
sourcefn from(child_stdout: ChildStdout) -> OwnedHandle
fn from(child_stdout: ChildStdout) -> OwnedHandle
Converts to this type from the input type.
sourceimpl From<File> for OwnedHandle
impl From<File> for OwnedHandle
sourcefn from(file: File) -> OwnedHandle
fn from(file: File) -> OwnedHandle
Converts to this type from the input type.
sourceimpl<T> From<JoinHandle<T>> for OwnedHandle
impl<T> From<JoinHandle<T>> for OwnedHandle
sourcefn from(join_handle: JoinHandle<T>) -> OwnedHandle
fn from(join_handle: JoinHandle<T>) -> OwnedHandle
Converts to this type from the input type.
sourceimpl FromRawHandle for OwnedHandle
impl FromRawHandle for OwnedHandle
sourceunsafe fn from_raw_handle(handle: *mut c_void) -> OwnedHandle
unsafe fn from_raw_handle(handle: *mut c_void) -> OwnedHandle
Constructs a new I/O object from the specified raw handle. Read more
sourceimpl IntoRawHandle for OwnedHandle
impl IntoRawHandle for OwnedHandle
sourcefn into_raw_handle(self) -> *mut c_void
fn into_raw_handle(self) -> *mut c_void
Consumes this object, returning the raw underlying handle. Read more
sourceimpl TryFrom<HandleOrInvalid> for OwnedHandle
impl TryFrom<HandleOrInvalid> for OwnedHandle
type Error = InvalidHandleError
type Error = InvalidHandleError
The type returned in the event of a conversion error.
sourcefn try_from(
handle_or_invalid: HandleOrInvalid
) -> Result<OwnedHandle, InvalidHandleError>
fn try_from(
handle_or_invalid: HandleOrInvalid
) -> Result<OwnedHandle, InvalidHandleError>
Performs the conversion.
sourceimpl TryFrom<HandleOrNull> for OwnedHandle
impl TryFrom<HandleOrNull> for OwnedHandle
type Error = NullHandleError
type Error = NullHandleError
The type returned in the event of a conversion error.
sourcefn try_from(
handle_or_null: HandleOrNull
) -> Result<OwnedHandle, NullHandleError>
fn try_from(
handle_or_null: HandleOrNull
) -> Result<OwnedHandle, NullHandleError>
Performs the conversion.
impl FilelikeViewType for OwnedHandle
impl Send for OwnedHandle
impl Sync for OwnedHandle
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> AsRawFilelike for T where
T: AsRawHandle,
impl<T> AsRawFilelike for T where
T: AsRawHandle,
sourcefn as_raw_filelike(&self) -> *mut c_void
fn as_raw_filelike(&self) -> *mut c_void
Returns the raw value.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> FromRawFilelike for T where
T: FromRawHandle,
impl<T> FromRawFilelike for T where
T: FromRawHandle,
sourceunsafe fn from_raw_filelike(raw: *mut c_void) -> T
unsafe fn from_raw_filelike(raw: *mut c_void) -> T
Constructs Self
from the raw value.
sourceimpl<T> IntoRawFilelike for T where
T: IntoRawHandle,
impl<T> IntoRawFilelike for T where
T: IntoRawHandle,
sourcefn into_raw_filelike(self) -> *mut c_void
fn into_raw_filelike(self) -> *mut c_void
Returns the raw value.