#[repr(transparent)]pub struct ucp_cb_param_flags(pub c_uint);Expand description
@ingroup UCP_ENDPOINT @brief Descriptor flags for Active Message callback.
In a callback, if flags is set to UCP_CB_PARAM_FLAG_DATA in a callback then data was allocated, so if UCS_INPROGRESS is returned from the callback, the data parameter will persist and the user has to call @ref ucp_am_data_release when data is no longer needed.
Tuple Fields§
§0: c_uintImplementations§
Trait Implementations§
Source§impl BitAnd for ucp_cb_param_flags
impl BitAnd for ucp_cb_param_flags
Source§impl BitAndAssign for ucp_cb_param_flags
impl BitAndAssign for ucp_cb_param_flags
Source§fn bitand_assign(&mut self, rhs: ucp_cb_param_flags)
fn bitand_assign(&mut self, rhs: ucp_cb_param_flags)
Performs the
&= operation. Read moreSource§impl BitOr for ucp_cb_param_flags
impl BitOr for ucp_cb_param_flags
Source§impl BitOrAssign for ucp_cb_param_flags
impl BitOrAssign for ucp_cb_param_flags
Source§fn bitor_assign(&mut self, rhs: ucp_cb_param_flags)
fn bitor_assign(&mut self, rhs: ucp_cb_param_flags)
Performs the
|= operation. Read moreSource§impl Clone for ucp_cb_param_flags
impl Clone for ucp_cb_param_flags
Source§fn clone(&self) -> ucp_cb_param_flags
fn clone(&self) -> ucp_cb_param_flags
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 ucp_cb_param_flags
impl Debug for ucp_cb_param_flags
Source§impl Hash for ucp_cb_param_flags
impl Hash for ucp_cb_param_flags
Source§impl PartialEq for ucp_cb_param_flags
impl PartialEq for ucp_cb_param_flags
impl Copy for ucp_cb_param_flags
impl Eq for ucp_cb_param_flags
impl StructuralPartialEq for ucp_cb_param_flags
Auto Trait Implementations§
impl Freeze for ucp_cb_param_flags
impl RefUnwindSafe for ucp_cb_param_flags
impl Send for ucp_cb_param_flags
impl Sync for ucp_cb_param_flags
impl Unpin for ucp_cb_param_flags
impl UnwindSafe for ucp_cb_param_flags
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