#[repr(transparent)]pub struct ucp_am_cb_flags(pub c_uint);Expand description
@ingroup UCP_WORKER @brief Flags for a UCP Active Message callback.
Flags that indicate how to handle UCP Active Messages.
Tuple Fields§
§0: c_uintImplementations§
Source§impl ucp_am_cb_flags
impl ucp_am_cb_flags
Sourcepub const UCP_AM_FLAG_WHOLE_MSG: ucp_am_cb_flags
pub const UCP_AM_FLAG_WHOLE_MSG: ucp_am_cb_flags
Indicates that the entire message will be handled in one callback.
Source§impl ucp_am_cb_flags
impl ucp_am_cb_flags
Sourcepub const UCP_AM_FLAG_PERSISTENT_DATA: ucp_am_cb_flags
pub const UCP_AM_FLAG_PERSISTENT_DATA: ucp_am_cb_flags
Guarantees that the specified @ref ucp_am_recv_callback_t callback, will always be called with @ref UCP_AM_RECV_ATTR_FLAG_DATA flag set, so the data will be accessible outside the callback, until @ref ucp_am_data_release is called.
Trait Implementations§
Source§impl BitAnd for ucp_am_cb_flags
impl BitAnd for ucp_am_cb_flags
Source§impl BitAndAssign for ucp_am_cb_flags
impl BitAndAssign for ucp_am_cb_flags
Source§fn bitand_assign(&mut self, rhs: ucp_am_cb_flags)
fn bitand_assign(&mut self, rhs: ucp_am_cb_flags)
Performs the
&= operation. Read moreSource§impl BitOr for ucp_am_cb_flags
impl BitOr for ucp_am_cb_flags
Source§impl BitOrAssign for ucp_am_cb_flags
impl BitOrAssign for ucp_am_cb_flags
Source§fn bitor_assign(&mut self, rhs: ucp_am_cb_flags)
fn bitor_assign(&mut self, rhs: ucp_am_cb_flags)
Performs the
|= operation. Read moreSource§impl Clone for ucp_am_cb_flags
impl Clone for ucp_am_cb_flags
Source§fn clone(&self) -> ucp_am_cb_flags
fn clone(&self) -> ucp_am_cb_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_am_cb_flags
impl Debug for ucp_am_cb_flags
Source§impl Hash for ucp_am_cb_flags
impl Hash for ucp_am_cb_flags
Source§impl PartialEq for ucp_am_cb_flags
impl PartialEq for ucp_am_cb_flags
impl Copy for ucp_am_cb_flags
impl Eq for ucp_am_cb_flags
impl StructuralPartialEq for ucp_am_cb_flags
Auto Trait Implementations§
impl Freeze for ucp_am_cb_flags
impl RefUnwindSafe for ucp_am_cb_flags
impl Send for ucp_am_cb_flags
impl Sync for ucp_am_cb_flags
impl Unpin for ucp_am_cb_flags
impl UnwindSafe for ucp_am_cb_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