#[repr(transparent)]pub struct ucp_stream_recv_flags_t(pub c_uint);Expand description
@ingroup UCP_COMM @brief Flags to define behavior of @ref ucp_stream_recv_nb function
This enumeration defines behavior of @ref ucp_stream_recv_nb function.
Tuple Fields§
§0: c_uintImplementations§
Source§impl ucp_stream_recv_flags_t
impl ucp_stream_recv_flags_t
Sourcepub const UCP_STREAM_RECV_FLAG_WAITALL: ucp_stream_recv_flags_t
pub const UCP_STREAM_RECV_FLAG_WAITALL: ucp_stream_recv_flags_t
< This flag requests that the operation will not be completed until all requested data is received and placed in the user buffer.
Trait Implementations§
Source§impl BitAnd for ucp_stream_recv_flags_t
impl BitAnd for ucp_stream_recv_flags_t
Source§impl BitAndAssign for ucp_stream_recv_flags_t
impl BitAndAssign for ucp_stream_recv_flags_t
Source§fn bitand_assign(&mut self, rhs: ucp_stream_recv_flags_t)
fn bitand_assign(&mut self, rhs: ucp_stream_recv_flags_t)
Performs the
&= operation. Read moreSource§impl BitOr for ucp_stream_recv_flags_t
impl BitOr for ucp_stream_recv_flags_t
Source§impl BitOrAssign for ucp_stream_recv_flags_t
impl BitOrAssign for ucp_stream_recv_flags_t
Source§fn bitor_assign(&mut self, rhs: ucp_stream_recv_flags_t)
fn bitor_assign(&mut self, rhs: ucp_stream_recv_flags_t)
Performs the
|= operation. Read moreSource§impl Clone for ucp_stream_recv_flags_t
impl Clone for ucp_stream_recv_flags_t
Source§fn clone(&self) -> ucp_stream_recv_flags_t
fn clone(&self) -> ucp_stream_recv_flags_t
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_stream_recv_flags_t
impl Debug for ucp_stream_recv_flags_t
Source§impl Hash for ucp_stream_recv_flags_t
impl Hash for ucp_stream_recv_flags_t
Source§impl PartialEq for ucp_stream_recv_flags_t
impl PartialEq for ucp_stream_recv_flags_t
impl Copy for ucp_stream_recv_flags_t
impl Eq for ucp_stream_recv_flags_t
impl StructuralPartialEq for ucp_stream_recv_flags_t
Auto Trait Implementations§
impl Freeze for ucp_stream_recv_flags_t
impl RefUnwindSafe for ucp_stream_recv_flags_t
impl Send for ucp_stream_recv_flags_t
impl Sync for ucp_stream_recv_flags_t
impl Unpin for ucp_stream_recv_flags_t
impl UnwindSafe for ucp_stream_recv_flags_t
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