#[repr(u32)]pub enum uct_progress_types {
UCT_PROGRESS_SEND = 1,
UCT_PROGRESS_RECV = 2,
UCT_PROGRESS_THREAD_SAFE = 128,
}Expand description
@ingroup UCT_RESOURCE @brief UCT progress types
Variants§
UCT_PROGRESS_SEND = 1
< Progress send operations
UCT_PROGRESS_RECV = 2
< Progress receive operations
UCT_PROGRESS_THREAD_SAFE = 128
< Enable/disable progress while another thread may be calling @ref ucp_worker_progress().
Trait Implementations§
Source§impl Clone for uct_progress_types
impl Clone for uct_progress_types
Source§fn clone(&self) -> uct_progress_types
fn clone(&self) -> uct_progress_types
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 uct_progress_types
impl Debug for uct_progress_types
Source§impl Hash for uct_progress_types
impl Hash for uct_progress_types
Source§impl PartialEq for uct_progress_types
impl PartialEq for uct_progress_types
impl Copy for uct_progress_types
impl Eq for uct_progress_types
impl StructuralPartialEq for uct_progress_types
Auto Trait Implementations§
impl Freeze for uct_progress_types
impl RefUnwindSafe for uct_progress_types
impl Send for uct_progress_types
impl Sync for uct_progress_types
impl Unpin for uct_progress_types
impl UnwindSafe for uct_progress_types
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