#[repr(C)]pub struct uct_cm_ep_priv_data_pack_args {
pub field_mask: u64,
pub dev_name: [c_char; 32],
}Expand description
@ingroup UCT_CLIENT_SERVER @brief Arguments to the client-server private data pack callback.
Used with the client-server API on a connection manager.
Fields§
§field_mask: u64Mask of valid fields in this structure, using bits from @ref uct_cm_ep_priv_data_pack_args_field. Fields not specified by this mask should not be accessed by the callback.
dev_name: [c_char; 32]Device name. This routine may fill the user’s private data according to the given device name. The device name that is passed to this routine, corresponds to @ref uct_tl_resource_desc_t::dev_name as returned from @ref uct_md_query_tl_resources.
Trait Implementations§
Source§impl Clone for uct_cm_ep_priv_data_pack_args
impl Clone for uct_cm_ep_priv_data_pack_args
Source§fn clone(&self) -> uct_cm_ep_priv_data_pack_args
fn clone(&self) -> uct_cm_ep_priv_data_pack_args
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 moreimpl Copy for uct_cm_ep_priv_data_pack_args
Auto Trait Implementations§
impl Freeze for uct_cm_ep_priv_data_pack_args
impl RefUnwindSafe for uct_cm_ep_priv_data_pack_args
impl Send for uct_cm_ep_priv_data_pack_args
impl Sync for uct_cm_ep_priv_data_pack_args
impl Unpin for uct_cm_ep_priv_data_pack_args
impl UnwindSafe for uct_cm_ep_priv_data_pack_args
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