Skip to main content

TcpSocketOptionsFfi

Struct TcpSocketOptionsFfi 

Source
#[repr(C)]
pub struct TcpSocketOptionsFfi { pub nodelay: i32, pub keepalive: i32, pub keepalive_idle_secs: i32, pub keepalive_interval_secs: i32, pub keepalive_count: i32, pub recv_buf: i32, pub send_buf: i32, pub linger_secs: i32, pub quickack: i32, pub reuse_port: i32, }
Expand description

Flat representation of TcpSocketOptions for the cxx bridge. -1 means “not set / use default”. 0 = false, 1 = true for booleans.

Fields§

§nodelay: i32§keepalive: i32§keepalive_idle_secs: i32§keepalive_interval_secs: i32§keepalive_count: i32§recv_buf: i32§send_buf: i32§linger_secs: i32§quickack: i32§reuse_port: i32

Trait Implementations§

Source§

impl ExternType for TcpSocketOptionsFfi

Source§

type Kind = Trivial

Source§

type Id

A type-level representation of the type’s C++ namespace and type name. Read more

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, 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.