#[repr(C)]pub struct uct_cm_ep_server_conn_notify_args {
pub field_mask: u64,
pub status: ucs_status_t,
}Expand description
@ingroup UCT_CLIENT_SERVER @brief Arguments to the server’s notify 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_server_conn_notify_args_field. Fields not specified by this mask should not be accessed by the callback.
status: ucs_status_tIndicates the client’s @ref ucs_status_t status: UCS_OK - the client completed its connection establishment and called @ref uct_cm_client_ep_conn_notify UCS_ERR_CONNECTION_RESET - the client’s connection was reset during the connection establishment to the server. Otherwise - indicates an internal connection establishment error on the local (server) side.
Trait Implementations§
Source§impl Clone for uct_cm_ep_server_conn_notify_args
impl Clone for uct_cm_ep_server_conn_notify_args
Source§fn clone(&self) -> uct_cm_ep_server_conn_notify_args
fn clone(&self) -> uct_cm_ep_server_conn_notify_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_server_conn_notify_args
Auto Trait Implementations§
impl Freeze for uct_cm_ep_server_conn_notify_args
impl RefUnwindSafe for uct_cm_ep_server_conn_notify_args
impl Send for uct_cm_ep_server_conn_notify_args
impl Sync for uct_cm_ep_server_conn_notify_args
impl Unpin for uct_cm_ep_server_conn_notify_args
impl UnwindSafe for uct_cm_ep_server_conn_notify_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