[][src]Struct cdds_util::ddsi_tran_conn

#[repr(C)]pub struct ddsi_tran_conn {
    pub m_base: ddsi_tran_base,
    pub m_read_fn: ddsi_tran_read_fn_t,
    pub m_write_fn: ddsi_tran_write_fn_t,
    pub m_peer_locator_fn: ddsi_tran_peer_locator_fn_t,
    pub m_disable_multiplexing_fn: ddsi_tran_disable_multiplexing_fn_t,
    pub m_locator_fn: ddsi_tran_locator_fn_t,
    pub m_server: bool,
    pub m_connless: bool,
    pub m_stream: bool,
    pub m_closed: bool,
    pub m_count: ddsrt_atomic_uint32_t,
    pub m_factory: ddsi_tran_factory_t,
    pub m_listener: ddsi_tran_listener_t,
    pub m_conn: ddsi_tran_conn_t,
}

Fields

m_base: ddsi_tran_basem_read_fn: ddsi_tran_read_fn_tm_write_fn: ddsi_tran_write_fn_tm_peer_locator_fn: ddsi_tran_peer_locator_fn_tm_disable_multiplexing_fn: ddsi_tran_disable_multiplexing_fn_tm_locator_fn: ddsi_tran_locator_fn_tm_server: boolm_connless: boolm_stream: boolm_closed: boolm_count: ddsrt_atomic_uint32_tm_factory: ddsi_tran_factory_tm_listener: ddsi_tran_listener_tm_conn: ddsi_tran_conn_t

Trait Implementations

impl Clone for ddsi_tran_conn[src]

impl Copy for ddsi_tran_conn[src]

impl Debug for ddsi_tran_conn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.