#[repr(C)]pub struct uct_ep_connect_params {
pub field_mask: u64,
pub private_data: *const c_void,
pub private_data_length: size_t,
}Expand description
@ingroup UCT_CLIENT_SERVER @brief Parameters for connecting a UCT endpoint by @ref uct_ep_connect.
Fields§
§field_mask: u64Mask of valid fields in this structure, using bits from @ref uct_ep_connect_params_field. Fields not specified by this mask will be ignored.
private_data: *const c_voidUser’s private data to be passed from client to server.
private_data_length: size_tLength of @ref uct_ep_connect_params::private_data, the maximal allowed value is indicated by the @ref uct_cm_attr::max_conn_priv.
Trait Implementations§
Source§impl Clone for uct_ep_connect_params
impl Clone for uct_ep_connect_params
Source§fn clone(&self) -> uct_ep_connect_params
fn clone(&self) -> uct_ep_connect_params
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for uct_ep_connect_params
impl Debug for uct_ep_connect_params
impl Copy for uct_ep_connect_params
Auto Trait Implementations§
impl Freeze for uct_ep_connect_params
impl RefUnwindSafe for uct_ep_connect_params
impl !Send for uct_ep_connect_params
impl !Sync for uct_ep_connect_params
impl Unpin for uct_ep_connect_params
impl UnwindSafe for uct_ep_connect_params
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more