Struct std::os::windows::io::BorrowedSocket

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

借来的套接字。

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

这使用 repr(transparent) 并具有主机套接字的表示形式,因此它可以在 FFI 中用于套接字作为参数传递的地方,它不会被捕获或消耗,并且它永远不会有值 INVALID_SOCKET

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

Implementations§

source§

impl BorrowedSocket<'_>

const: 1.63.0 · source

pub const unsafe fn borrow_raw(socket: RawSocket) -> Self

返回一个包含给定原始套接字的 BorrowedSocket

Safety

raw 指向的资源在返回的 BorrowedSocket 期间必须保持打开状态,并且它不能具有值 INVALID_SOCKET

source§

impl BorrowedSocket<'_>

source

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

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

Trait Implementations§

source§

impl AsRawSocket for BorrowedSocket<'_>

source§

fn as_raw_socket(&self) -> RawSocket

提取原始套接字。 Read more
source§

impl AsSocket for BorrowedSocket<'_>

source§

fn as_socket(&self) -> BorrowedSocket<'_>

借用套接字。
source§

impl<'socket> Clone for BorrowedSocket<'socket>

source§

fn clone(&self) -> BorrowedSocket<'socket>

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

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

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

impl Debug for BorrowedSocket<'_>

source§

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

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

impl<'socket> Copy for BorrowedSocket<'socket>

Auto Trait Implementations§

§

impl<'socket> RefUnwindSafe for BorrowedSocket<'socket>

§

impl<'socket> Send for BorrowedSocket<'socket>

§

impl<'socket> Sync for BorrowedSocket<'socket>

§

impl<'socket> Unpin for BorrowedSocket<'socket>

§

impl<'socket> UnwindSafe for BorrowedSocket<'socket>

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>

执行转换。