Struct std::os::windows::io::BorrowedHandle

1.63.0 · source ·
#[repr(transparent)]
pub struct BorrowedHandle<'handle> { /* private fields */ }
Available on Windows only.
Expand description

借来的句柄。

它有一个生命周期参数,将它与拥有句柄的事物的生命周期联系起来。

这使用 repr(transparent) 并具有主机句柄的表示形式,因此它可以在 FFI 中将句柄作为参数传递的地方使用,它不会被捕获或消耗。

请注意,它可能具有值 -1,它在 BorrowedHandle 中始终表示有效的句柄值,例如 the current process handle,而不是 INVALID_HANDLE_VALUE,尽管两者具有相同的值。 有关完整故事,请参见 这个

并且,它可能具有值 NULL (0),当控制台与进程分离或使用 windows_subsystem 时,可能会发生这种情况。

这种类型的 .to_owned() 实现返回另一个 BorrowedHandle 而不是 OwnedHandle。它只是简单地复制原始句柄,然后在相同的生命周期下借用。

Implementations§

source§

impl BorrowedHandle<'_>

const: 1.63.0 · source

pub const unsafe fn borrow_raw(handle: RawHandle) -> Self

返回一个 BorrowedHandle 持有给定的原始句柄。

Safety

handle 指向的资源必须是有效的打开句柄,它必须在返回的 BorrowedHandle 期间保持打开状态。

请注意,它可能具有值 INVALID_HANDLE_VALUE (-1),有时这是一个有效的句柄值。有关完整故事,请参见 这个

并且,它可能具有值 NULL (0),当控制台与进程分离或使用 windows_subsystem 时,可能会发生这种情况。

source§

impl BorrowedHandle<'_>

source

pub fn try_clone_to_owned(&self) -> Result<OwnedHandle>

创建一个新的 OwnedHandle 实例,该实例与现有 BorrowedHandle 实例共享相同的底层 object。

Trait Implementations§

source§

impl AsHandle for BorrowedHandle<'_>

source§

fn as_handle(&self) -> BorrowedHandle<'_>

借用句柄。 Read more
source§

impl AsRawHandle for BorrowedHandle<'_>

source§

fn as_raw_handle(&self) -> RawHandle

提取原始句柄。 Read more
source§

impl<'handle> Clone for BorrowedHandle<'handle>

source§

fn clone(&self) -> BorrowedHandle<'handle>

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for BorrowedHandle<'_>

source§

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

使用给定的格式化程序格式化该值。 Read more
1.70.0 · source§

impl IsTerminal for BorrowedHandle<'_>

source§

fn is_terminal(&self) -> bool

如果 descriptor/handle 引用 terminal/tty,则返回 trueRead more
source§

impl<'handle> Copy for BorrowedHandle<'handle>

source§

impl Send for BorrowedHandle<'_>

source§

impl Sync for BorrowedHandle<'_>

Auto Trait Implementations§

§

impl<'handle> RefUnwindSafe for BorrowedHandle<'handle>

§

impl<'handle> Unpin for BorrowedHandle<'handle>

§

impl<'handle> UnwindSafe for BorrowedHandle<'handle>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

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

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

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

source§

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

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

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

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

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

§

type Error = Infallible

发生转换错误时返回的类型。
source§

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

执行转换。
source§

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

§

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

发生转换错误时返回的类型。
source§

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

执行转换。