Struct std::os::fd::BorrowedFd

1.63.0 · source ·
#[repr(transparent)]
pub struct BorrowedFd<'fd> { /* private fields */ }
Expand description

借用的文件描述符。

它有一个生命周期参数,将它与拥有文件描述符的事物的生命周期联系起来。

这使用 repr(transparent) 并具有主机文件描述符的表示,因此它可以在 FFI 中使用文件描述符作为参数传递的地方,它不会被捕获或消耗,它永远不会有值 -1

这种类型的 .to_owned() 实现返回另一个 BorrowedFd 而不是 OwnedFd。它只是简单地复制原始文件描述符,然后在相同的生命周期内借用。

Implementations§

source§

impl BorrowedFd<'_>

const: 1.63.0 · source

pub const unsafe fn borrow_raw(fd: RawFd) -> Self

返回包含给定原始文件描述符的 BorrowedFd

Safety

fd 指向的资源在返回的 BorrowedFd 期间必须保持打开状态,并且它不能具有值 -1

source§

impl BorrowedFd<'_>

source

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

创建一个与现有 BorrowedFd 实例共享相同,底层,文件描述的新 OwnedFd 实例。

Trait Implementations§

source§

impl AsFd for BorrowedFd<'_>

source§

fn as_fd(&self) -> BorrowedFd<'_>

借用文件描述符。 Read more
source§

impl AsRawFd for BorrowedFd<'_>

source§

fn as_raw_fd(&self) -> RawFd

提取原始文件描述符。 Read more
source§

impl<'fd> Clone for BorrowedFd<'fd>

source§

fn clone(&self) -> BorrowedFd<'fd>

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

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

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

impl Debug for BorrowedFd<'_>

source§

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

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

impl IsTerminal for BorrowedFd<'_>

source§

fn is_terminal(&self) -> bool

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

impl<'fd> Copy for BorrowedFd<'fd>

Auto Trait Implementations§

§

impl<'fd> RefUnwindSafe for BorrowedFd<'fd>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'fd> UnwindSafe for BorrowedFd<'fd>

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>

执行转换。